Package com.google.rpc
Interface BadRequest.FieldViolationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BadRequest.FieldViolation,BadRequest.FieldViolation.Builder
- Enclosing class:
- BadRequest
public static interface BadRequest.FieldViolationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()A description of why the request element is bad.com.google.protobuf.ByteStringgetDescriptionBytes()A description of why the request element is bad.java.lang.StringgetField()A path leading to a field in the request body.com.google.protobuf.ByteStringgetFieldBytes()A path leading to a field in the request body.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getField
java.lang.String getField()
A path leading to a field in the request body. The value will be a sequence of dot-separated identifiers that identify a protocol buffer field. E.g., "field_violations.field" would identify this field.
string field = 1;- Returns:
- The field.
-
getFieldBytes
com.google.protobuf.ByteString getFieldBytes()
A path leading to a field in the request body. The value will be a sequence of dot-separated identifiers that identify a protocol buffer field. E.g., "field_violations.field" would identify this field.
string field = 1;- Returns:
- The bytes for field.
-
getDescription
java.lang.String getDescription()
A description of why the request element is bad.
string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A description of why the request element is bad.
string description = 2;- Returns:
- The bytes for description.
-
-