Package com.google.dataflow.v1beta3
Interface InvalidTemplateParameters.ParameterViolationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InvalidTemplateParameters.ParameterViolation
,InvalidTemplateParameters.ParameterViolation.Builder
- Enclosing class:
- InvalidTemplateParameters
public static interface InvalidTemplateParameters.ParameterViolationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
A description of why the parameter failed to validate.com.google.protobuf.ByteString
getDescriptionBytes()
A description of why the parameter failed to validate.String
getParameter()
The parameter that failed to validate.com.google.protobuf.ByteString
getParameterBytes()
The parameter that failed to validate.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParameter
String getParameter()
The parameter that failed to validate.
string parameter = 1;
- Returns:
- The parameter.
-
getParameterBytes
com.google.protobuf.ByteString getParameterBytes()
The parameter that failed to validate.
string parameter = 1;
- Returns:
- The bytes for parameter.
-
getDescription
String getDescription()
A description of why the parameter failed to validate.
string description = 2;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A description of why the parameter failed to validate.
string description = 2;
- Returns:
- The bytes for description.
-
-