|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Filter.Mode>
de.erichseifert.gral.data.filters.Filter.Mode
public static enum Filter.Mode
Behavior when engaging the borders of a column, so that the filter would need more data values than available.
Enum Constant Summary | |
---|---|
CIRCULAR
Repeats the data. |
|
MIRROR
Mirrors values at the last value. |
|
OMIT
Ignores missing values. |
|
REPEAT
Repeats the last value. |
|
ZERO
Treats missing values as zero. |
Method Summary | |
---|---|
static Filter.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Filter.Mode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Filter.Mode OMIT
public static final Filter.Mode ZERO
public static final Filter.Mode REPEAT
public static final Filter.Mode MIRROR
public static final Filter.Mode CIRCULAR
Method Detail |
---|
public static Filter.Mode[] values()
for (Filter.Mode c : Filter.Mode.values()) System.out.println(c);
public static Filter.Mode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |