Package io.envoyproxy.pgv.validate
Interface Validate.MessageRulesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Validate.MessageRules
,Validate.MessageRules.Builder
- Enclosing class:
- Validate
public static interface Validate.MessageRulesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getRequired()
Required specifies that this field must be setboolean
getSkip()
Skip specifies that the validation rules of this field should not be evaluatedboolean
hasRequired()
Required specifies that this field must be setboolean
hasSkip()
Skip specifies that the validation rules of this field should not be evaluated-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSkip
boolean hasSkip()
Skip specifies that the validation rules of this field should not be evaluated
optional bool skip = 1;
- Returns:
- Whether the skip field is set.
-
getSkip
boolean getSkip()
Skip specifies that the validation rules of this field should not be evaluated
optional bool skip = 1;
- Returns:
- The skip.
-
hasRequired
boolean hasRequired()
Required specifies that this field must be set
optional bool required = 2;
- Returns:
- Whether the required field is set.
-
getRequired
boolean getRequired()
Required specifies that this field must be set
optional bool required = 2;
- Returns:
- The required.
-
-