public static enum StringApplier.Priority extends Enum<StringApplier.Priority>
StringApplier.| Enum Constant and Description |
|---|
HIGH
Operators have a high importance to be applied.
|
HIGHEST
Operators with this priority will be called first.
|
LOW
Operators have a low importance to be applied.
|
LOWEST
Operators with this priority will be called last.
|
NORMAL
Operators are neither important nor unimportant.
|
| Modifier and Type | Method and Description |
|---|---|
static StringApplier.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringApplier.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringApplier.Priority LOWEST
public static final StringApplier.Priority LOW
public static final StringApplier.Priority NORMAL
public static final StringApplier.Priority HIGH
public static final StringApplier.Priority HIGHEST
public static StringApplier.Priority[] values()
for (StringApplier.Priority c : StringApplier.Priority.values()) System.out.println(c);
public static StringApplier.Priority 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 © 2023. All rights reserved.