public static enum Function1.BooleanCombiner extends Enum<Function1.BooleanCombiner>
| Modifier and Type | Method and Description |
|---|---|
abstract <T> Function1<T,Boolean> |
combine(Iterable<Function1<T,Boolean>> in) |
static Function1.BooleanCombiner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function1.BooleanCombiner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Function1.BooleanCombiner AND
public static final Function1.BooleanCombiner OR
public static Function1.BooleanCombiner[] values()
for (Function1.BooleanCombiner c : Function1.BooleanCombiner.values()) System.out.println(c);
public static Function1.BooleanCombiner 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 © 2017. All rights reserved.