public enum StrictOperator extends Enum<StrictOperator>
| Enum Constant and Description |
|---|
DATE |
| Modifier and Type | Method and Description |
|---|---|
static Optional<StrictOperator> |
findFor(Object value) |
Object |
interpolate(Object value) |
static StrictOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StrictOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StrictOperator DATE
public static StrictOperator[] values()
for (StrictOperator c : StrictOperator.values()) System.out.println(c);
public static StrictOperator 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 Optional<StrictOperator> findFor(Object value)
Copyright © 2020. All rights reserved.