public enum CheckListFilterType extends Enum<CheckListFilterType>
| Enum Constant and Description |
|---|
CONTAINS |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
include(String element,
String filter) |
static CheckListFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckListFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckListFilterType STARTS_WITH
public static final CheckListFilterType CONTAINS
public static CheckListFilterType[] values()
for (CheckListFilterType c : CheckListFilterType.values()) System.out.println(c);
public static CheckListFilterType 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 © 2004–2017 Ultreia.io. All rights reserved.