public static enum CurrencyField.CurrencyLabelPosition extends java.lang.Enum<CurrencyField.CurrencyLabelPosition>
| Enum Constant and Description |
|---|
LEFT
To the left from the text input component.
|
RIGHT
To the right from the text input component.
|
| Modifier and Type | Method and Description |
|---|---|
static CurrencyField.CurrencyLabelPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CurrencyField.CurrencyLabelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurrencyField.CurrencyLabelPosition LEFT
public static final CurrencyField.CurrencyLabelPosition RIGHT
public static CurrencyField.CurrencyLabelPosition[] values()
for (CurrencyField.CurrencyLabelPosition c : CurrencyField.CurrencyLabelPosition.values()) System.out.println(c);
public static CurrencyField.CurrencyLabelPosition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null