Class SelectOption


  • public class SelectOption
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.Integer index
      Matches by the index.
      java.lang.String label
      Matches by option.label.
      java.lang.String value
      Matches by option.value.
    • Constructor Summary

      Constructors 
      Constructor Description
      SelectOption()  
    • Field Detail

      • value

        public java.lang.String value
        Matches by option.value. Optional.
      • label

        public java.lang.String label
        Matches by option.label. Optional.
      • index

        public java.lang.Integer index
        Matches by the index. Optional.
    • Constructor Detail

      • SelectOption

        public SelectOption()
    • Method Detail

      • setValue

        public SelectOption setValue​(java.lang.String value)
        Matches by option.value. Optional.
      • setLabel

        public SelectOption setLabel​(java.lang.String label)
        Matches by option.label. Optional.
      • setIndex

        public SelectOption setIndex​(int index)
        Matches by the index. Optional.