Class StandardSelectionProperty

java.lang.Object
org.gwtproject.ext.StandardSelectionProperty
All Implemented Interfaces:
SelectionProperty

public class StandardSelectionProperty
extends java.lang.Object
implements SelectionProperty
Author:
Dmitrii Tikhomirov Created by treblereel 12/5/18
  • Constructor Summary

    Constructors
    Constructor Description
    StandardSelectionProperty​(java.lang.String name, java.lang.String activeValue)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getCurrentValue()
    The value for the permutation currently being considered.
    java.lang.String getName()
    The name of the property.
    java.util.SortedSet<java.lang.String> getPossibleValues()
    Returns the possible values for the property in sorted order.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • StandardSelectionProperty

      public StandardSelectionProperty​(java.lang.String name, java.lang.String activeValue)
  • Method Details

    • getName

      public java.lang.String getName()
      Description copied from interface: SelectionProperty
      The name of the property.
      Specified by:
      getName in interface SelectionProperty
      Returns:
      the property name as a String.
    • getCurrentValue

      public java.lang.String getCurrentValue()
      Description copied from interface: SelectionProperty
      The value for the permutation currently being considered.
      Specified by:
      getCurrentValue in interface SelectionProperty
      Returns:
      the property value as a String.
    • getPossibleValues

      public java.util.SortedSet<java.lang.String> getPossibleValues()
      Description copied from interface: SelectionProperty
      Returns the possible values for the property in sorted order.
      Specified by:
      getPossibleValues in interface SelectionProperty
      Returns:
      a SortedSet of Strings containing the possible property values.