public static enum FilteringIterator.Type extends java.lang.Enum<FilteringIterator.Type>
Enum Constant and Description |
---|
CUSTOM_CHECK
Custom
equals to be used for checking. |
STANDARD_CHECK
Standard
equals to be used for checking. |
Modifier and Type | Method and Description |
---|---|
static FilteringIterator.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilteringIterator.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteringIterator.Type STANDARD_CHECK
equals
to be used for checking.public static final FilteringIterator.Type CUSTOM_CHECK
equals
to be used for checking.public static FilteringIterator.Type[] values()
for (FilteringIterator.Type c : FilteringIterator.Type.values()) System.out.println(c);
public static FilteringIterator.Type 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