public static enum RibbonConfigurationManager.LAYOUTALIGN extends Enum<RibbonConfigurationManager.LAYOUTALIGN>
Enum Constant and Description |
---|
MIDDLE
The controls are middly aligned.
|
TOP
The controls are top aligned in the layout.
|
Modifier and Type | Method and Description |
---|---|
static RibbonConfigurationManager.LAYOUTALIGN |
createsFromString(String align)
Converts a string to a layout align
|
String |
toString() |
static RibbonConfigurationManager.LAYOUTALIGN |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RibbonConfigurationManager.LAYOUTALIGN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RibbonConfigurationManager.LAYOUTALIGN TOP
public static final RibbonConfigurationManager.LAYOUTALIGN MIDDLE
public static RibbonConfigurationManager.LAYOUTALIGN[] values()
for (RibbonConfigurationManager.LAYOUTALIGN c : RibbonConfigurationManager.LAYOUTALIGN.values()) System.out.println(c);
public static RibbonConfigurationManager.LAYOUTALIGN valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<RibbonConfigurationManager.LAYOUTALIGN>
public static RibbonConfigurationManager.LAYOUTALIGN createsFromString(String align)
align
- The align to convert