public static enum ChoiceFormatter.Operator extends Enum<ChoiceFormatter.Operator>
| Enum Constant and Description |
|---|
equals |
greaterThan |
| Modifier and Type | Method and Description |
|---|---|
static ChoiceFormatter.Operator |
findOperatorFor(char c) |
char |
getCharacter() |
String |
toString() |
static ChoiceFormatter.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChoiceFormatter.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChoiceFormatter.Operator equals
public static final ChoiceFormatter.Operator greaterThan
public static ChoiceFormatter.Operator[] values()
for (ChoiceFormatter.Operator c : ChoiceFormatter.Operator.values()) System.out.println(c);
public static ChoiceFormatter.Operator 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 char getCharacter()
public String toString()
toString in class Enum<ChoiceFormatter.Operator>@Nullable public static ChoiceFormatter.Operator findOperatorFor(char c)
Copyright © 2024 echocat. All rights reserved.