Interface SettingsEntryIdentifierOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
SettingsEntryIdentifier, SettingsEntryIdentifier.Builder

@Generated public interface SettingsEntryIdentifierOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    The key of the setting within its namespace.
    com.google.protobuf.ByteString
    The key of the setting within its namespace.
    The namespace containing this setting.
    com.google.protobuf.ByteString
    The namespace containing this setting.

    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

    • getNamespace

      String getNamespace()
      The namespace containing this setting.
      Must match a namespace from a registered SettingsNamespace.
      
      string namespace = 1;
      Returns:
      The namespace.
    • getNamespaceBytes

      com.google.protobuf.ByteString getNamespaceBytes()
      The namespace containing this setting.
      Must match a namespace from a registered SettingsNamespace.
      
      string namespace = 1;
      Returns:
      The bytes for namespace.
    • getKey

      String getKey()
      The key of the setting within its namespace.
      Must match a key from a SettingsEntry in the corresponding namespace.
      
      string key = 2;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
      The key of the setting within its namespace.
      Must match a key from a SettingsEntry in the corresponding namespace.
      
      string key = 2;
      Returns:
      The bytes for key.