public static final class BadRequest.FieldViolation extends GeneratedMessageV3 implements BadRequest.FieldViolationOrBuilder
A message type used to describe a single bad request field.
Protobuf type google.rpc.BadRequest.FieldViolation
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > BadRequest.FieldViolationImplements
BadRequest.FieldViolationOrBuilderStatic Fields
DESCRIPTION_FIELD_NUMBER
public static final int DESCRIPTION_FIELD_NUMBER
Type | Description |
int |
FIELD_FIELD_NUMBER
public static final int FIELD_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static BadRequest.FieldViolation getDefaultInstance()
Type | Description |
BadRequest.FieldViolation |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static BadRequest.FieldViolation.Builder newBuilder()
Type | Description |
BadRequest.FieldViolation.Builder |
newBuilder(BadRequest.FieldViolation prototype)
public static BadRequest.FieldViolation.Builder newBuilder(BadRequest.FieldViolation prototype)
Name | Description |
prototype | BadRequest.FieldViolation |
Type | Description |
BadRequest.FieldViolation.Builder |
parseDelimitedFrom(InputStream input)
public static BadRequest.FieldViolation parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseFrom(byte[] data)
public static BadRequest.FieldViolation parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static BadRequest.FieldViolation parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static BadRequest.FieldViolation parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseFrom(InputStream input)
public static BadRequest.FieldViolation parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static BadRequest.FieldViolation parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static BadRequest.FieldViolation parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
BadRequest.FieldViolation |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<BadRequest.FieldViolation> parser()
Type | Description |
Parser<FieldViolation> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getDefaultInstanceForType()
public BadRequest.FieldViolation getDefaultInstanceForType()
Type | Description |
BadRequest.FieldViolation |
getDescription()
public String getDescription()
A description of why the request element is bad.
string description = 2;
Type | Description |
String | The description. |
getDescriptionBytes()
public ByteString getDescriptionBytes()
A description of why the request element is bad.
string description = 2;
Type | Description |
ByteString | The bytes for description. |
getField()
public String getField()
A path that leads to a field in the request body. The value will be a
sequence of dot-separated identifiers that identify a protocol buffer
field.
Consider the following:
message CreateContactRequest {
message EmailAddress {
enum Type {
TYPE_UNSPECIFIED = 0;
HOME = 1;
WORK = 2;
}
optional string email = 1;
repeated EmailType type = 2;
}
string full_name = 1;
repeated EmailAddress email_addresses = 2;
}
In this example, in proto field
could take one of the following values:
full_name
for a violation in thefull_name
valueemail_addresses[1].email
for a violation in theemail
field of the firstemail_addresses
messageemail_addresses[3].type[2]
for a violation in the secondtype
value in the thirdemail_addresses
message. In JSON, the same values are represented as:fullName
for a violation in thefullName
valueemailAddresses[1].email
for a violation in theemail
field of the firstemailAddresses
messageemailAddresses[3].type[2]
for a violation in the secondtype
value in the thirdemailAddresses
message.
string field = 1;
Type | Description |
String | The field. |
getFieldBytes()
public ByteString getFieldBytes()
A path that leads to a field in the request body. The value will be a
sequence of dot-separated identifiers that identify a protocol buffer
field.
Consider the following:
message CreateContactRequest {
message EmailAddress {
enum Type {
TYPE_UNSPECIFIED = 0;
HOME = 1;
WORK = 2;
}
optional string email = 1;
repeated EmailType type = 2;
}
string full_name = 1;
repeated EmailAddress email_addresses = 2;
}
In this example, in proto field
could take one of the following values:
full_name
for a violation in thefull_name
valueemail_addresses[1].email
for a violation in theemail
field of the firstemail_addresses
messageemail_addresses[3].type[2]
for a violation in the secondtype
value in the thirdemail_addresses
message. In JSON, the same values are represented as:fullName
for a violation in thefullName
valueemailAddresses[1].email
for a violation in theemail
field of the firstemailAddresses
messageemailAddresses[3].type[2]
for a violation in the secondtype
value in the thirdemailAddresses
message.
string field = 1;
Type | Description |
ByteString | The bytes for field. |
getParserForType()
public Parser<BadRequest.FieldViolation> getParserForType()
Type | Description |
Parser<FieldViolation> |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public BadRequest.FieldViolation.Builder newBuilderForType()
Type | Description |
BadRequest.FieldViolation.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected BadRequest.FieldViolation.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
BadRequest.FieldViolation.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public BadRequest.FieldViolation.Builder toBuilder()
Type | Description |
BadRequest.FieldViolation.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |