public static enum NumberPlaceholderCheck.ComparisonType extends Enum<NumberPlaceholderCheck.ComparisonType>
Enum Constant and Description |
---|
EQUAL |
GREATER |
GREATER_EQ |
LESS |
LESS_EQ |
Modifier and Type | Method and Description |
---|---|
BiPredicate<Double,Double> |
getPredicate() |
static NumberPlaceholderCheck.ComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberPlaceholderCheck.ComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberPlaceholderCheck.ComparisonType LESS
public static final NumberPlaceholderCheck.ComparisonType LESS_EQ
public static final NumberPlaceholderCheck.ComparisonType EQUAL
public static final NumberPlaceholderCheck.ComparisonType GREATER_EQ
public static final NumberPlaceholderCheck.ComparisonType GREATER
public static NumberPlaceholderCheck.ComparisonType[] values()
for (NumberPlaceholderCheck.ComparisonType c : NumberPlaceholderCheck.ComparisonType.values()) System.out.println(c);
public static NumberPlaceholderCheck.ComparisonType 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 BiPredicate<Double,Double> getPredicate()
Copyright © 2021. All rights reserved.