- java.lang.Object
-
- java.lang.Enum<PropertySheet.Mode>
-
- org.controlsfx.control.PropertySheet.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<PropertySheet.Mode>
- Enclosing class:
- PropertySheet
public static enum PropertySheet.Mode extends Enum<PropertySheet.Mode>
Specifies how thePropertySheet
should be laid out. Refer to the enumeration values to learn what each one means.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORY
Groups the properties in theitems list
based on theircategory
.NAME
Simply displays the properties in theitems list
in the order they are in the list.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertySheet.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static PropertySheet.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final PropertySheet.Mode NAME
Simply displays the properties in theitems list
in the order they are in the list.
-
CATEGORY
public static final PropertySheet.Mode CATEGORY
Groups the properties in theitems list
based on theircategory
.
-
-
Method Detail
-
values
public static PropertySheet.Mode[] 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 (PropertySheet.Mode c : PropertySheet.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertySheet.Mode 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
-
-