public static enum Property.Size extends java.lang.Enum<Property.Size>
| Enum Constant and Description |
|---|
DEFAULT
Defines that the configuration item property should be shown using the default size.
|
LARGE
Defines that the configuration item property should be shown using the large size.
|
MEDIUM
Defines that the configuration item property should be shown using the medium size.
|
SMALL
Defines that the configuration item property should be shown using the small size.
|
| Modifier and Type | Method and Description |
|---|---|
static Property.Size |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Property.Size[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Property.Size DEFAULT
public static final Property.Size SMALL
public static final Property.Size MEDIUM
public static final Property.Size LARGE
public static Property.Size[] values()
for (Property.Size c : Property.Size.values()) System.out.println(c);
public static Property.Size 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