Enum Calculator.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<Calculator.PropertyKeys>
-
- org.primefaces.extensions.component.calculator.Calculator.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Calculator.PropertyKeys>
- Enclosing class:
- Calculator
protected static enum Calculator.PropertyKeys extends java.lang.Enum<Calculator.PropertyKeys>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static Calculator.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Calculator.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
widgetVar
public static final Calculator.PropertyKeys widgetVar
-
showOn
public static final Calculator.PropertyKeys showOn
-
layout
public static final Calculator.PropertyKeys layout
-
locale
public static final Calculator.PropertyKeys locale
-
precision
public static final Calculator.PropertyKeys precision
-
dir
public static final Calculator.PropertyKeys dir
-
styleClass
public static final Calculator.PropertyKeys styleClass
-
onopen
public static final Calculator.PropertyKeys onopen
-
onbutton
public static final Calculator.PropertyKeys onbutton
-
onclose
public static final Calculator.PropertyKeys onclose
-
forValue
public static final Calculator.PropertyKeys forValue
-
-
Method Detail
-
values
public static Calculator.PropertyKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Calculator.PropertyKeys c : Calculator.PropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Calculator.PropertyKeys valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Calculator.PropertyKeys>
-
-