Interface OptionModel

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Map<java.lang.String,​java.lang.String> getAttributes()
      Additional attributes to render within the <option>.
      java.lang.String getLabel()
      The localized, user-presentable label for the option.
      java.lang.Object getValue()
      The server-side value represented by this option.
      boolean isDisabled()
      If true, then a disabled attribute will be rendered with the <option>.
    • Method Detail

      • getLabel

        java.lang.String getLabel()
        The localized, user-presentable label for the option.
      • isDisabled

        boolean isDisabled()
        If true, then a disabled attribute will be rendered with the <option>.
      • getAttributes

        java.util.Map<java.lang.String,​java.lang.String> getAttributes()
        Additional attributes to render within the <option>. May return null.
      • getValue

        java.lang.Object getValue()
        The server-side value represented by this option. This is used to determine which option will be selected. It is also used, via ValueEncoder.toClient(Object), to generate the client-side value attribute.