public enum SimpleItemStyle extends Enum<SimpleItemStyle>
Enum Constant and Description |
---|
ERROR
Error item style.
|
INFORMATION
Information item style.
|
WARNING
Warning item style.
|
Modifier and Type | Method and Description |
---|---|
static SimpleItemStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleItemStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleItemStyle INFORMATION
public static final SimpleItemStyle WARNING
public static final SimpleItemStyle ERROR
public static SimpleItemStyle[] values()
for (SimpleItemStyle c : SimpleItemStyle.values()) System.out.println(c);
public static SimpleItemStyle 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 nullCopyright © 2015 MMSOFT Design. All Rights Reserved.