Interface ComboSettingOrBuilder

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

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

    Modifier and Type
    Method
    Description
    The default option ID used when no value is configured.
    com.google.protobuf.ByteString
    The default option ID 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.
    getOptions(int index)
    The list of available options to choose from.
    int
    The list of available options to choose from.
    The list of available options to choose from.
    The list of available options to choose from.
    The list of available options to choose from.
    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.
    • getOptionsList

      List<ComboSetting.Option> getOptionsList()
      The list of available options to choose from.
      The order determines display order in the dropdown.
      
      repeated .soulfire.v1.ComboSetting.Option options = 3;
    • getOptions

      ComboSetting.Option getOptions(int index)
      The list of available options to choose from.
      The order determines display order in the dropdown.
      
      repeated .soulfire.v1.ComboSetting.Option options = 3;
    • getOptionsCount

      int getOptionsCount()
      The list of available options to choose from.
      The order determines display order in the dropdown.
      
      repeated .soulfire.v1.ComboSetting.Option options = 3;
    • getOptionsOrBuilderList

      List<? extends ComboSetting.OptionOrBuilder> getOptionsOrBuilderList()
      The list of available options to choose from.
      The order determines display order in the dropdown.
      
      repeated .soulfire.v1.ComboSetting.Option options = 3;
    • getOptionsOrBuilder

      ComboSetting.OptionOrBuilder getOptionsOrBuilder(int index)
      The list of available options to choose from.
      The order determines display order in the dropdown.
      
      repeated .soulfire.v1.ComboSetting.Option options = 3;
    • getDef

      String getDef()
      The default option ID used when no value is configured.
      Must match one of the option IDs in the options list.
      
      string def = 4;
      Returns:
      The def.
    • getDefBytes

      com.google.protobuf.ByteString getDefBytes()
      The default option ID used when no value is configured.
      Must match one of the option IDs in the options list.
      
      string def = 4;
      Returns:
      The bytes for def.
    • getDisabled

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