Interface Validate.FloatRulesOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Validate.FloatRules, Validate.FloatRules.Builder
    Enclosing class:
    Validate

    public static interface Validate.FloatRulesOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      float getConst()
      Const specifies that this field must be exactly the specified value
      float getGt()
      Gt specifies that this field must be greater than the specified value, exclusive.
      float getGte()
      Gte specifies that this field must be greater than or equal to the specified value, inclusive.
      boolean getIgnoreEmpty()
      IgnoreEmpty specifies that the validation rules of this field should be evaluated only if the field is not empty
      float getIn​(int index)
      In specifies that this field must be equal to one of the specified values
      int getInCount()
      In specifies that this field must be equal to one of the specified values
      java.util.List<java.lang.Float> getInList()
      In specifies that this field must be equal to one of the specified values
      float getLt()
      Lt specifies that this field must be less than the specified value, exclusive
      float getLte()
      Lte specifies that this field must be less than or equal to the specified value, inclusive
      float getNotIn​(int index)
      NotIn specifies that this field cannot be equal to one of the specified values
      int getNotInCount()
      NotIn specifies that this field cannot be equal to one of the specified values
      java.util.List<java.lang.Float> getNotInList()
      NotIn specifies that this field cannot be equal to one of the specified values
      boolean hasConst()
      Const specifies that this field must be exactly the specified value
      boolean hasGt()
      Gt specifies that this field must be greater than the specified value, exclusive.
      boolean hasGte()
      Gte specifies that this field must be greater than or equal to the specified value, inclusive.
      boolean hasIgnoreEmpty()
      IgnoreEmpty specifies that the validation rules of this field should be evaluated only if the field is not empty
      boolean hasLt()
      Lt specifies that this field must be less than the specified value, exclusive
      boolean hasLte()
      Lte specifies that this field must be less than or equal to the specified value, inclusive
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasConst

        boolean hasConst()
         Const specifies that this field must be exactly the specified value
         
        optional float const = 1;
        Returns:
        Whether the const field is set.
      • getConst

        float getConst()
         Const specifies that this field must be exactly the specified value
         
        optional float const = 1;
        Returns:
        The const.
      • hasLt

        boolean hasLt()
         Lt specifies that this field must be less than the specified value,
         exclusive
         
        optional float lt = 2;
        Returns:
        Whether the lt field is set.
      • getLt

        float getLt()
         Lt specifies that this field must be less than the specified value,
         exclusive
         
        optional float lt = 2;
        Returns:
        The lt.
      • hasLte

        boolean hasLte()
         Lte specifies that this field must be less than or equal to the
         specified value, inclusive
         
        optional float lte = 3;
        Returns:
        Whether the lte field is set.
      • getLte

        float getLte()
         Lte specifies that this field must be less than or equal to the
         specified value, inclusive
         
        optional float lte = 3;
        Returns:
        The lte.
      • hasGt

        boolean hasGt()
         Gt specifies that this field must be greater than the specified value,
         exclusive. If the value of Gt is larger than a specified Lt or Lte, the
         range is reversed.
         
        optional float gt = 4;
        Returns:
        Whether the gt field is set.
      • getGt

        float getGt()
         Gt specifies that this field must be greater than the specified value,
         exclusive. If the value of Gt is larger than a specified Lt or Lte, the
         range is reversed.
         
        optional float gt = 4;
        Returns:
        The gt.
      • hasGte

        boolean hasGte()
         Gte specifies that this field must be greater than or equal to the
         specified value, inclusive. If the value of Gte is larger than a
         specified Lt or Lte, the range is reversed.
         
        optional float gte = 5;
        Returns:
        Whether the gte field is set.
      • getGte

        float getGte()
         Gte specifies that this field must be greater than or equal to the
         specified value, inclusive. If the value of Gte is larger than a
         specified Lt or Lte, the range is reversed.
         
        optional float gte = 5;
        Returns:
        The gte.
      • getInList

        java.util.List<java.lang.Float> getInList()
         In specifies that this field must be equal to one of the specified
         values
         
        repeated float in = 6;
        Returns:
        A list containing the in.
      • getInCount

        int getInCount()
         In specifies that this field must be equal to one of the specified
         values
         
        repeated float in = 6;
        Returns:
        The count of in.
      • getIn

        float getIn​(int index)
         In specifies that this field must be equal to one of the specified
         values
         
        repeated float in = 6;
        Parameters:
        index - The index of the element to return.
        Returns:
        The in at the given index.
      • getNotInList

        java.util.List<java.lang.Float> getNotInList()
         NotIn specifies that this field cannot be equal to one of the specified
         values
         
        repeated float not_in = 7;
        Returns:
        A list containing the notIn.
      • getNotInCount

        int getNotInCount()
         NotIn specifies that this field cannot be equal to one of the specified
         values
         
        repeated float not_in = 7;
        Returns:
        The count of notIn.
      • getNotIn

        float getNotIn​(int index)
         NotIn specifies that this field cannot be equal to one of the specified
         values
         
        repeated float not_in = 7;
        Parameters:
        index - The index of the element to return.
        Returns:
        The notIn at the given index.
      • hasIgnoreEmpty

        boolean hasIgnoreEmpty()
         IgnoreEmpty specifies that the validation rules of this field should be
         evaluated only if the field is not empty
         
        optional bool ignore_empty = 8;
        Returns:
        Whether the ignoreEmpty field is set.
      • getIgnoreEmpty

        boolean getIgnoreEmpty()
         IgnoreEmpty specifies that the validation rules of this field should be
         evaluated only if the field is not empty
         
        optional bool ignore_empty = 8;
        Returns:
        The ignoreEmpty.