Interface IntervalOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Interval, Interval.Builder

    public interface IntervalOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • hasMinimum

        boolean hasMinimum()
         Inclusive lower bound.
         
        double minimum = 1;
        Returns:
        Whether the minimum field is set.
      • getMinimum

        double getMinimum()
         Inclusive lower bound.
         
        double minimum = 1;
        Returns:
        The minimum.
      • hasExclusiveMinimum

        boolean hasExclusiveMinimum()
         Exclusive lower bound.
         
        double exclusive_minimum = 2;
        Returns:
        Whether the exclusiveMinimum field is set.
      • getExclusiveMinimum

        double getExclusiveMinimum()
         Exclusive lower bound.
         
        double exclusive_minimum = 2;
        Returns:
        The exclusiveMinimum.
      • hasMaximum

        boolean hasMaximum()
         Inclusive upper bound.
         
        double maximum = 3;
        Returns:
        Whether the maximum field is set.
      • getMaximum

        double getMaximum()
         Inclusive upper bound.
         
        double maximum = 3;
        Returns:
        The maximum.
      • hasExclusiveMaximum

        boolean hasExclusiveMaximum()
         Exclusive upper bound.
         
        double exclusive_maximum = 4;
        Returns:
        Whether the exclusiveMaximum field is set.
      • getExclusiveMaximum

        double getExclusiveMaximum()
         Exclusive upper bound.
         
        double exclusive_maximum = 4;
        Returns:
        The exclusiveMaximum.