public enum MatchEventKind extends java.lang.Enum<MatchEventKind> implements IntegralConstant
MatchEvent
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static MatchEventKind |
valueOf(int value) |
static MatchEventKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MatchEventKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static java.util.Set<java.lang.Integer> |
valuesAsIntegers() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
equals
public static final MatchEventKind ADDED
MatchEvent.ADDED
public static final MatchEventKind REMOVED
MatchEvent.REMOVED
public static MatchEventKind[] values()
for (MatchEventKind c : MatchEventKind.values()) System.out.println(c);
public static MatchEventKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static java.util.Set<java.lang.Integer> valuesAsIntegers()
public static MatchEventKind valueOf(int value)
public int getValue()
getValue
in interface IntegralConstant