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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getLocale()
      The locale used following the specification defined at https://www.rfc-editor.org/rfc/bcp/bcp47.txt.
      com.google.protobuf.ByteString getLocaleBytes()
      The locale used following the specification defined at https://www.rfc-editor.org/rfc/bcp/bcp47.txt.
      String getMessage()
      The localized error message in the above locale.
      com.google.protobuf.ByteString getMessageBytes()
      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 Detail

      • getLocale

        String getLocale()
         The locale used following the specification defined at
         https://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
         https://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.