Package io.envoyproxy.pgv.validate
Interface Validate.AnyRulesOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Validate.AnyRules,Validate.AnyRules.Builder
- Enclosing class:
- Validate
public static interface Validate.AnyRulesOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description StringgetIn(int index)In specifies that this field's `type_url` must be equal to one of the specified values.com.google.protobuf.ByteStringgetInBytes(int index)In specifies that this field's `type_url` must be equal to one of the specified values.intgetInCount()In specifies that this field's `type_url` must be equal to one of the specified values.List<String>getInList()In specifies that this field's `type_url` must be equal to one of the specified values.StringgetNotIn(int index)NotIn specifies that this field's `type_url` must not be equal to any of the specified values.com.google.protobuf.ByteStringgetNotInBytes(int index)NotIn specifies that this field's `type_url` must not be equal to any of the specified values.intgetNotInCount()NotIn specifies that this field's `type_url` must not be equal to any of the specified values.List<String>getNotInList()NotIn specifies that this field's `type_url` must not be equal to any of the specified values.booleangetRequired()Required specifies that this field must be setbooleanhasRequired()Required specifies that this field must be setMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasRequired
boolean hasRequired()Required specifies that this field must be set
optional bool required = 1; -
getRequired
boolean getRequired()Required specifies that this field must be set
optional bool required = 1; -
getInList
In specifies that this field's `type_url` must be equal to one of the specified values.
repeated string in = 2; -
getInCount
int getInCount()In specifies that this field's `type_url` must be equal to one of the specified values.
repeated string in = 2; -
getIn
In specifies that this field's `type_url` must be equal to one of the specified values.
repeated string in = 2; -
getInBytes
com.google.protobuf.ByteString getInBytes(int index)In specifies that this field's `type_url` must be equal to one of the specified values.
repeated string in = 2; -
getNotInList
NotIn specifies that this field's `type_url` must not be equal to any of the specified values.
repeated string not_in = 3; -
getNotInCount
int getNotInCount()NotIn specifies that this field's `type_url` must not be equal to any of the specified values.
repeated string not_in = 3; -
getNotIn
NotIn specifies that this field's `type_url` must not be equal to any of the specified values.
repeated string not_in = 3; -
getNotInBytes
com.google.protobuf.ByteString getNotInBytes(int index)NotIn specifies that this field's `type_url` must not be equal to any of the specified values.
repeated string not_in = 3;
-