Enum FilteringIterator.Type
- java.lang.Object
-
- java.lang.Enum<FilteringIterator.Type>
-
- ru.ispras.testbase.knowledge.iterator.FilteringIterator.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FilteringIterator.Type>
- Enclosing class:
- FilteringIterator<T>
public static enum FilteringIterator.Type extends java.lang.Enum<FilteringIterator.Type>
This enumeration contains equality checking types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM_CHECK
Customequals
to be used for checking.STANDARD_CHECK
Standardequals
to be used for checking.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
STANDARD_CHECK
public static final FilteringIterator.Type STANDARD_CHECK
Standardequals
to be used for checking.
-
CUSTOM_CHECK
public static final FilteringIterator.Type CUSTOM_CHECK
Customequals
to be used for checking.
-
-
Method Detail
-
values
public static FilteringIterator.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FilteringIterator.Type c : FilteringIterator.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilteringIterator.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-