public enum MessageKind extends java.lang.Enum<MessageKind>
| Enum Constant and Description |
|---|
ANTI_MONOTONE
Deletes
|
DEFAULT
No special distinguishing feature
|
MONOTONE
Inserts and delete-insert monotone change pairs
|
| Modifier and Type | Method and Description |
|---|---|
static MessageKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageKind DEFAULT
public static final MessageKind MONOTONE
public static final MessageKind ANTI_MONOTONE
public static MessageKind[] values()
for (MessageKind c : MessageKind.values()) System.out.println(c);
public static MessageKind 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 null