Package io.envoyproxy.pgv.validate
Interface Validate.Fixed64RulesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Validate.Fixed64Rules,Validate.Fixed64Rules.Builder
- Enclosing class:
- Validate
public static interface Validate.Fixed64RulesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetConst()Const specifies that this field must be exactly the specified valuelonggetGt()Gt specifies that this field must be greater than the specified value, exclusive.longgetGte()Gte specifies that this field must be greater than or equal to the specified value, inclusive.booleangetIgnoreEmpty()IgnoreEmpty specifies that the validation rules of this field should be evaluated only if the field is not emptylonggetIn(int index)In specifies that this field must be equal to one of the specified valuesintgetInCount()In specifies that this field must be equal to one of the specified valuesList<Long>getInList()In specifies that this field must be equal to one of the specified valueslonggetLt()Lt specifies that this field must be less than the specified value, exclusivelonggetLte()Lte specifies that this field must be less than or equal to the specified value, inclusivelonggetNotIn(int index)NotIn specifies that this field cannot be equal to one of the specified valuesintgetNotInCount()NotIn specifies that this field cannot be equal to one of the specified valuesList<Long>getNotInList()NotIn specifies that this field cannot be equal to one of the specified valuesbooleanhasConst()Const specifies that this field must be exactly the specified valuebooleanhasGt()Gt specifies that this field must be greater than the specified value, exclusive.booleanhasGte()Gte specifies that this field must be greater than or equal to the specified value, inclusive.booleanhasIgnoreEmpty()IgnoreEmpty specifies that the validation rules of this field should be evaluated only if the field is not emptybooleanhasLt()Lt specifies that this field must be less than the specified value, exclusivebooleanhasLte()Lte specifies that this field must be less than or equal to the specified value, inclusive-
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 fixed64 const = 1;
-
getConst
long getConst()
Const specifies that this field must be exactly the specified value
optional fixed64 const = 1;
-
hasLt
boolean hasLt()
Lt specifies that this field must be less than the specified value, exclusive
optional fixed64 lt = 2;
-
getLt
long getLt()
Lt specifies that this field must be less than the specified value, exclusive
optional fixed64 lt = 2;
-
hasLte
boolean hasLte()
Lte specifies that this field must be less than or equal to the specified value, inclusive
optional fixed64 lte = 3;
-
getLte
long getLte()
Lte specifies that this field must be less than or equal to the specified value, inclusive
optional fixed64 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 fixed64 gt = 4;
-
getGt
long 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 fixed64 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 fixed64 gte = 5;
-
getGte
long 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 fixed64 gte = 5;
-
getInList
List<Long> getInList()
In specifies that this field must be equal to one of the specified values
repeated fixed64 in = 6;
-
getInCount
int getInCount()
In specifies that this field must be equal to one of the specified values
repeated fixed64 in = 6;
-
getIn
long getIn(int index)
In specifies that this field must be equal to one of the specified values
repeated fixed64 in = 6;
-
getNotInList
List<Long> getNotInList()
NotIn specifies that this field cannot be equal to one of the specified values
repeated fixed64 not_in = 7;
-
getNotInCount
int getNotInCount()
NotIn specifies that this field cannot be equal to one of the specified values
repeated fixed64 not_in = 7;
-
getNotIn
long getNotIn(int index)
NotIn specifies that this field cannot be equal to one of the specified values
repeated fixed64 not_in = 7;
-
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;
-
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;
-
-