public enum ViewFilterProcessResult extends java.lang.Enum<ViewFilterProcessResult>
| Enum Constant and Description |
|---|
ERROR
Invalid filters provided.
|
HAS_TO_PROCESS_FULLY
Filters require full table processing.
|
OK
No actions required.
|
| Modifier and Type | Method and Description |
|---|---|
static ViewFilterProcessResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewFilterProcessResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewFilterProcessResult OK
public static final ViewFilterProcessResult ERROR
public static final ViewFilterProcessResult HAS_TO_PROCESS_FULLY
public static ViewFilterProcessResult[] values()
for (ViewFilterProcessResult c : ViewFilterProcessResult.values()) System.out.println(c);
public static ViewFilterProcessResult 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