public enum FilterBehaviour extends Enum<FilterBehaviour>
| Enum Constant and Description |
|---|
HIDE_FIELDS
If this option selected, JFilter will hide selected fields.
|
KEEP_FIELDS
If this option selected, JFilter will hide all other fields but not selected ones.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterBehaviour HIDE_FIELDS
public static final FilterBehaviour KEEP_FIELDS
public static FilterBehaviour[] values()
for (FilterBehaviour c : FilterBehaviour.values()) System.out.println(c);
public static FilterBehaviour 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 © 2019. All rights reserved.