Package io.envoyproxy.pgv.validate
Interface Validate.DoubleRulesOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Validate.DoubleRules,Validate.DoubleRules.Builder
- Enclosing class:
- Validate
public static interface Validate.DoubleRulesOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description doublegetConst()Const specifies that this field must be exactly the specified valuedoublegetGt()Gt specifies that this field must be greater than the specified value, exclusive.doublegetGte()Gte specifies that this field must be greater than or equal to the specified value, inclusive.doublegetIn(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<Double>getInList()In specifies that this field must be equal to one of the specified valuesdoublegetLt()Lt specifies that this field must be less than the specified value, exclusivedoublegetLte()Lte specifies that this field must be less than or equal to the specified value, inclusivedoublegetNotIn(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<Double>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.booleanhasLt()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, inclusiveMethods 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 double const = 1; -
getConst
double getConst()Const specifies that this field must be exactly the specified value
optional double const = 1; -
hasLt
boolean hasLt()Lt specifies that this field must be less than the specified value, exclusive
optional double lt = 2; -
getLt
double getLt()Lt specifies that this field must be less than the specified value, exclusive
optional double lt = 2; -
hasLte
boolean hasLte()Lte specifies that this field must be less than or equal to the specified value, inclusive
optional double lte = 3; -
getLte
double getLte()Lte specifies that this field must be less than or equal to the specified value, inclusive
optional double 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 double gt = 4; -
getGt
double 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 double 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 double gte = 5; -
getGte
double 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 double gte = 5; -
getInList
In specifies that this field must be equal to one of the specified values
repeated double in = 6; -
getInCount
int getInCount()In specifies that this field must be equal to one of the specified values
repeated double in = 6; -
getIn
double getIn(int index)In specifies that this field must be equal to one of the specified values
repeated double in = 6; -
getNotInList
NotIn specifies that this field cannot be equal to one of the specified values
repeated double not_in = 7; -
getNotInCount
int getNotInCount()NotIn specifies that this field cannot be equal to one of the specified values
repeated double not_in = 7; -
getNotIn
double getNotIn(int index)NotIn specifies that this field cannot be equal to one of the specified values
repeated double not_in = 7;
-