public enum InequalityHandling extends Enum<InequalityHandling>
| Enum Constant and Description |
|---|
PASS_NULL
Parallel iterator will keep returning true on hasNext(), but next() will return null instead of DataSet
|
RELOCATE
Parallel iterator will ignore this producer, and will use other producers.
|
RESET
Parallel iterator will silently reset underlying producer
|
STOP_EVERYONE
Parallel iterator will stop everything once one of producers runs out of data
|
| Modifier and Type | Method and Description |
|---|---|
static InequalityHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InequalityHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InequalityHandling STOP_EVERYONE
public static final InequalityHandling PASS_NULL
public static final InequalityHandling RESET
public static final InequalityHandling RELOCATE
public static InequalityHandling[] values()
for (InequalityHandling c : InequalityHandling.values()) System.out.println(c);
public static InequalityHandling 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 © 2018. All rights reserved.