public enum FreeformType extends Enum<FreeformType>
Enum Constant and Description |
---|
FREEFORM_DICTATION
Free form dictation, such as a written document
|
FREEFORM_DISABLED
Disable free form speech recognition.
|
FREEFORM_INSTANT_MESSAGE
A message for an instant message client
|
FREEFORM_MEMO
A memo or a list of items
|
FREEFORM_MESSAGE
A message addressed to another person.
|
FREEFORM_SMS
A SMS or TXT message.
|
FREEFORM_TRANSCRIPT
General transcription
|
FREEFORM_VOICEMAIL
A voice mail transcription
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static FreeformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FreeformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FreeformType FREEFORM_DISABLED
public static final FreeformType FREEFORM_SMS
public static final FreeformType FREEFORM_VOICEMAIL
public static final FreeformType FREEFORM_DICTATION
public static final FreeformType FREEFORM_MESSAGE
public static final FreeformType FREEFORM_INSTANT_MESSAGE
public static final FreeformType FREEFORM_TRANSCRIPT
public static final FreeformType FREEFORM_MEMO
public static FreeformType[] values()
for (FreeformType c : FreeformType.values()) System.out.println(c);
public static FreeformType 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 int getValue()