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
Modifier and TypeMethodDescriptionboolean
Required specifies that this field must be setboolean
getSkip()
Skip specifies that the validation rules of this field should not be evaluatedboolean
Required specifies that this field must be setboolean
hasSkip()
Skip specifies that the validation rules of this field should not be evaluatedMethods 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
-
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.
-