T - the returned value type.public final class Constant<T> extends Object implements NullaryFunction<T>, Function<Object,T>, BinaryFunction<Object,Object,T>, NullaryPredicate, Predicate<Object>, BinaryPredicate<Object,Object>
Evaluates to constant value.
Tests to a constant value, assuming
a boolean of Boolean value is supplied.
| Modifier and Type | Field and Description |
|---|---|
static Constant<Boolean> |
FALSE
Constant for
false. |
static Constant<Boolean> |
TRUE
Constant for
true. |
| Constructor and Description |
|---|
Constant(T value)
Create a new Constant.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
T |
evaluate()
Evaluate this function.
|
T |
evaluate(Object obj)
Evaluate this function.
|
T |
evaluate(Object left,
Object right)
Evaluate this function.
|
static Constant<Boolean> |
falsePredicate()
Get a
Constant that always
returns false. |
int |
hashCode() |
static <T> Constant<T> |
of(T value)
Get a Constant instance for the specified value.
|
static Constant<Boolean> |
predicate(boolean value)
Get a
Constant that always
returns value. |
boolean |
test()
Evaluate this predicate.
|
boolean |
test(Object obj)
Evaluate this predicate.
|
boolean |
test(Object left,
Object right)
Evaluate this predicate.
|
String |
toString() |
static Constant<Boolean> |
truePredicate()
Get a
Constant that always
returns true. |
public T evaluate()
evaluate in interface NullaryFunction<T>public T evaluate(Object left, Object right)
evaluate in interface BinaryFunction<Object,Object,T>left - the L element of the ordered pair of argumentsright - the R element of the ordered pair of argumentspublic boolean test()
test in interface NullaryPredicatepublic boolean test(Object left, Object right)
test in interface BinaryPredicate<Object,Object>left - the L element of the ordered pair of argumentsright - the R element of the ordered pair of argumentspublic static Constant<Boolean> truePredicate()
Constant that always
returns true.Constant that always
returns truepublic static Constant<Boolean> falsePredicate()
Constant that always
returns false.Constant that always
returns falsepublic static Constant<Boolean> predicate(boolean value)
Constant that always
returns value.value - the constant valueConstant that always
returns valueCopyright © 2003–2014 The Apache Software Foundation. All rights reserved.