public enum MetaAttribute extends Enum<MetaAttribute>
Enum Constant and Description |
---|
OTHER |
SUPPORTEDAUDIOTYPES |
SUPPORTEDLANGUAGEPAIRS_ANYCOMBINATION |
SUPPORTEDLANGUAGEPAIRS_PAIRLIST |
SUPPORTEDLANGUAGEPATHS_ANYCOMBINATION |
SUPPORTEDLANGUAGEPATHS_PATHLIST |
SUPPORTEDLANGUAGES |
SUPPORTEDVOICETYPES |
Modifier and Type | Method and Description |
---|---|
static boolean |
containName(String name) |
String |
getName() |
static MetaAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetaAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaAttribute SUPPORTEDLANGUAGEPAIRS_ANYCOMBINATION
public static final MetaAttribute SUPPORTEDLANGUAGEPAIRS_PAIRLIST
public static final MetaAttribute SUPPORTEDLANGUAGEPATHS_ANYCOMBINATION
public static final MetaAttribute SUPPORTEDLANGUAGEPATHS_PATHLIST
public static final MetaAttribute SUPPORTEDLANGUAGES
public static final MetaAttribute SUPPORTEDVOICETYPES
public static final MetaAttribute SUPPORTEDAUDIOTYPES
public static final MetaAttribute OTHER
public static MetaAttribute[] values()
for (MetaAttribute c : MetaAttribute.values()) System.out.println(c);
public static MetaAttribute 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 String getName()
public static boolean containName(String name)