Package org.gwtproject.ext
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.StringgetCurrentValue()The value for the permutation currently being considered.java.lang.StringgetName()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:SelectionPropertyThe name of the property.- Specified by:
getNamein interfaceSelectionProperty- Returns:
- the property name as a String.
-
getCurrentValue
public java.lang.String getCurrentValue()Description copied from interface:SelectionPropertyThe value for the permutation currently being considered.- Specified by:
getCurrentValuein interfaceSelectionProperty- Returns:
- the property value as a String.
-
getPossibleValues
public java.util.SortedSet<java.lang.String> getPossibleValues()Description copied from interface:SelectionPropertyReturns the possible values for the property in sorted order.- Specified by:
getPossibleValuesin interfaceSelectionProperty- Returns:
- a SortedSet of Strings containing the possible property values.
-