Interface Validate.Int32RulesOrBuilder

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

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

    Modifier and Type Method Description
    int getConst()
    Const specifies that this field must be exactly the specified value
    int getGt()
    Gt specifies that this field must be greater than the specified value, exclusive.
    int getGte()
    Gte specifies that this field must be greater than or equal to the specified value, inclusive.
    int 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
    List<Integer> getInList()
    In specifies that this field must be equal to one of the specified values
    int getLt()
    Lt specifies that this field must be less than the specified value, exclusive
    int getLte()
    Lte specifies that this field must be less than or equal to the specified value, inclusive
    int 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
    List<Integer> 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 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 Details

    • hasConst

      boolean hasConst()
       Const specifies that this field must be exactly the specified value
       
      optional int32 const = 1;
    • getConst

      int getConst()
       Const specifies that this field must be exactly the specified value
       
      optional int32 const = 1;
    • hasLt

      boolean hasLt()
       Lt specifies that this field must be less than the specified value,
       exclusive
       
      optional int32 lt = 2;
    • getLt

      int getLt()
       Lt specifies that this field must be less than the specified value,
       exclusive
       
      optional int32 lt = 2;
    • hasLte

      boolean hasLte()
       Lte specifies that this field must be less than or equal to the
       specified value, inclusive
       
      optional int32 lte = 3;
    • getLte

      int getLte()
       Lte specifies that this field must be less than or equal to the
       specified value, inclusive
       
      optional int32 lte = 3;
    • 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 int32 gt = 4;
    • getGt

      int 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 int32 gt = 4;
    • 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 int32 gte = 5;
    • getGte

      int 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 int32 gte = 5;
    • getInList

      List<Integer> getInList()
       In specifies that this field must be equal to one of the specified
       values
       
      repeated int32 in = 6;
    • getInCount

      int getInCount()
       In specifies that this field must be equal to one of the specified
       values
       
      repeated int32 in = 6;
    • getIn

      int getIn​(int index)
       In specifies that this field must be equal to one of the specified
       values
       
      repeated int32 in = 6;
    • getNotInList

      List<Integer> getNotInList()
       NotIn specifies that this field cannot be equal to one of the specified
       values
       
      repeated int32 not_in = 7;
    • getNotInCount

      int getNotInCount()
       NotIn specifies that this field cannot be equal to one of the specified
       values
       
      repeated int32 not_in = 7;
    • getNotIn

      int getNotIn​(int index)
       NotIn specifies that this field cannot be equal to one of the specified
       values
       
      repeated int32 not_in = 7;