public enum Category extends Enum<Category>
Filter category| Enum Constant and Description |
|---|
HEADER_FILTER
A column header filter
|
SEARCH
A search field
|
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category SEARCH
public static final Category HEADER_FILTER
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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–2022 Dominokit. All rights reserved.