public static enum PropertySheet.Mode extends java.lang.Enum<PropertySheet.Mode>
PropertySheet should be laid out. Refer to the
enumeration values to learn what each one means.| Enum Constant and Description |
|---|
CATEGORY
Groups the properties in the
items list based on their
category. |
NAME
Simply displays the properties in the
items list in the order they are
in the list. |
| Modifier and Type | Method and Description |
|---|---|
static PropertySheet.Mode |
valueOf(java.lang.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.
|
public static final PropertySheet.Mode NAME
items list in the order they are
in the list.public static final PropertySheet.Mode CATEGORY
items list based on their
category.public static PropertySheet.Mode[] values()
for (PropertySheet.Mode c : PropertySheet.Mode.values()) System.out.println(c);
public static PropertySheet.Mode 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