Enum Constant and Description |
---|
AREA |
BAR |
BOX |
LINE |
POINT |
RIVER |
STEAM |
STEAM_PLUS |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getText() |
static Filter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter AREA
public static final Filter LINE
public static final Filter BAR
public static final Filter BOX
public static final Filter POINT
public static final Filter STEAM
public static final Filter STEAM_PLUS
public static final Filter RIVER
public static Filter[] values()
for (Filter c : Filter.values()) System.out.println(c);
public static Filter 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 nullpublic java.lang.String getText()