public static enum Intent.Type extends java.lang.Enum<Intent.Type>
Enum Constant and Description |
---|
CORRECT
Correction intent type: CORRECT.
|
DELETE
Correction intent type: DELETE.
|
INSERT
Correction intent type: INSERT.
|
RENAME
Correction intent type: RENAME.
|
REPAIR
Correction intent type: REPAIR.
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
fullCode
Full code (e.g.
|
java.lang.String |
fullName
Full name (e.g.
|
java.lang.String |
tinyCode
Tiny code (e.g.
|
Modifier and Type | Method and Description |
---|---|
static Intent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Intent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Intent.Type CORRECT
public static final Intent.Type INSERT
public static final Intent.Type DELETE
public static final Intent.Type REPAIR
public static final Intent.Type RENAME
public final java.lang.String fullName
public final java.lang.String fullCode
public final java.lang.String tinyCode
public static Intent.Type[] values()
for (Intent.Type c : Intent.Type.values()) System.out.println(c);
public static Intent.Type 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