Package com.google.rpc
Interface LocalizedMessageOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocalizedMessage
,LocalizedMessage.Builder
public interface LocalizedMessageOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe locale used following the specification defined at http://www.rfc-editor.org/rfc/bcp/bcp47.txt.com.google.protobuf.ByteString
The locale used following the specification defined at http://www.rfc-editor.org/rfc/bcp/bcp47.txt.The localized error message in the above locale.com.google.protobuf.ByteString
The localized error message in the above locale.Methods 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
-
getLocale
String getLocale()The locale used following the specification defined at http://www.rfc-editor.org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
string locale = 1;
- Returns:
- The locale.
-
getLocaleBytes
com.google.protobuf.ByteString getLocaleBytes()The locale used following the specification defined at http://www.rfc-editor.org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
string locale = 1;
- Returns:
- The bytes for locale.
-
getMessage
String getMessage()The localized error message in the above locale.
string message = 2;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()The localized error message in the above locale.
string message = 2;
- Returns:
- The bytes for message.
-