Interface StringListSettingOrBuilder

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

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

    Modifier and Type
    Method
    Description
    getDef(int index)
    The default list of values used when no value is configured.
    com.google.protobuf.ByteString
    getDefBytes(int index)
    The default list of values used when no value is configured.
    int
    The default list of values used when no value is configured.
    The default list of values used when no value is configured.
    A longer description explaining what this setting does.
    com.google.protobuf.ByteString
    A longer description explaining what this setting does.
    boolean
    Whether this setting is disabled (read-only) in the UI.
    The display name shown in the UI label for this setting.
    com.google.protobuf.ByteString
    The display name shown in the UI label for 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

    • getUiName

      String getUiName()
      The display name shown in the UI label for this setting.
      
      string ui_name = 1;
      Returns:
      The uiName.
    • getUiNameBytes

      com.google.protobuf.ByteString getUiNameBytes()
      The display name shown in the UI label for this setting.
      
      string ui_name = 1;
      Returns:
      The bytes for uiName.
    • getDescription

      String getDescription()
      A longer description explaining what this setting does.
      
      string description = 2;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
      A longer description explaining what this setting does.
      
      string description = 2;
      Returns:
      The bytes for description.
    • getDefList

      List<String> getDefList()
      The default list of values used when no value is configured.
      Can be empty for an initially empty list.
      
      repeated string def = 3;
      Returns:
      A list containing the def.
    • getDefCount

      int getDefCount()
      The default list of values used when no value is configured.
      Can be empty for an initially empty list.
      
      repeated string def = 3;
      Returns:
      The count of def.
    • getDef

      String getDef(int index)
      The default list of values used when no value is configured.
      Can be empty for an initially empty list.
      
      repeated string def = 3;
      Parameters:
      index - The index of the element to return.
      Returns:
      The def at the given index.
    • getDefBytes

      com.google.protobuf.ByteString getDefBytes(int index)
      The default list of values used when no value is configured.
      Can be empty for an initially empty list.
      
      repeated string def = 3;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the def at the given index.
    • getDisabled

      boolean getDisabled()
      Whether this setting is disabled (read-only) in the UI.
      
      bool disabled = 4;
      Returns:
      The disabled.