Enum CONSTANTS.FIELD_ALIGN
- Object
-
- Enum<CONSTANTS.FIELD_ALIGN>
-
- FIELD_ALIGN
-
- All Implemented Interfaces:
Serializable,Comparable<CONSTANTS.FIELD_ALIGN>,Constable
- Enclosing class:
- CONSTANTS
public static enum CONSTANTS.FIELD_ALIGN extends Enum<CONSTANTS.FIELD_ALIGN>
Zeigt die Textausrichtung in einem TextField an.- Since:
- 9.01.000
-
-
Method Summary
Modifier and Type Method Description static CONSTANTS.FIELD_ALIGNvalueOf(String name)Returns the enum constant of this type with the specified name.static CONSTANTS.FIELD_ALIGN[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT
public static final CONSTANTS.FIELD_ALIGN LEFT
Ausrichtung nach links
-
RIGHT
public static final CONSTANTS.FIELD_ALIGN RIGHT
Ausrichtung nach rechts
-
CENTER
public static final CONSTANTS.FIELD_ALIGN CENTER
Zentrale Ausrichtung
-
-
Method Detail
-
values
public static CONSTANTS.FIELD_ALIGN[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CONSTANTS.FIELD_ALIGN valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-