public static enum Function1.ConstBool extends Enum<Function1.ConstBool> implements Function1<Object,Boolean>
Function1.BooleanCombiner, Function1.Const, Function1.ConstBool| Enum Constant and Description |
|---|
ACCEPT
A predicate that always returns true.
|
REJECT
A predicate that always returns false.
|
| Modifier and Type | Method and Description |
|---|---|
static Function1.ConstBool |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function1.ConstBool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfpublic static final Function1.ConstBool ACCEPT
public static final Function1.ConstBool REJECT
public static Function1.ConstBool[] values()
for (Function1.ConstBool c : Function1.ConstBool.values()) System.out.println(c);
public static Function1.ConstBool 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.