public static enum PrintablePredicateFactory.ParameterizedLeafFactory extends Enum<PrintablePredicateFactory.ParameterizedLeafFactory>
Enum Constant and Description |
---|
CONTAINS |
CONTAINS_STRING |
ENDS_WITH |
EQUAL_TO |
EQUALS_IGNORE_CASE |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IS_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
MATCHES_REGEX |
OBJECT_IS_SAME_AS |
STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
static <T> Predicate<T> |
create(PrintablePredicateFactory.ParameterizedLeafFactory parameterizedLeafFactory,
List<Object> args) |
static PrintablePredicateFactory.ParameterizedLeafFactory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrintablePredicateFactory.ParameterizedLeafFactory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintablePredicateFactory.ParameterizedLeafFactory IS_EQUAL_TO
public static final PrintablePredicateFactory.ParameterizedLeafFactory GREATER_THAN
public static final PrintablePredicateFactory.ParameterizedLeafFactory GREATER_THAN_OR_EQUAL_TO
public static final PrintablePredicateFactory.ParameterizedLeafFactory LESS_THAN_OR_EQUAL_TO
public static final PrintablePredicateFactory.ParameterizedLeafFactory LESS_THAN
public static final PrintablePredicateFactory.ParameterizedLeafFactory EQUAL_TO
public static final PrintablePredicateFactory.ParameterizedLeafFactory MATCHES_REGEX
public static final PrintablePredicateFactory.ParameterizedLeafFactory CONTAINS_STRING
public static final PrintablePredicateFactory.ParameterizedLeafFactory STARTS_WITH
public static final PrintablePredicateFactory.ParameterizedLeafFactory ENDS_WITH
public static final PrintablePredicateFactory.ParameterizedLeafFactory EQUALS_IGNORE_CASE
public static final PrintablePredicateFactory.ParameterizedLeafFactory OBJECT_IS_SAME_AS
public static final PrintablePredicateFactory.ParameterizedLeafFactory CONTAINS
public static PrintablePredicateFactory.ParameterizedLeafFactory[] values()
for (PrintablePredicateFactory.ParameterizedLeafFactory c : PrintablePredicateFactory.ParameterizedLeafFactory.values()) System.out.println(c);
public static PrintablePredicateFactory.ParameterizedLeafFactory 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 nullpublic static <T> Predicate<T> create(PrintablePredicateFactory.ParameterizedLeafFactory parameterizedLeafFactory, List<Object> args)
Copyright © 2024. All rights reserved.