de.folt.models.datamodel
Enum GeneralLinguisticObject.LinguisticTypes
java.lang.Object
java.lang.Enum<GeneralLinguisticObject.LinguisticTypes>
de.folt.models.datamodel.GeneralLinguisticObject.LinguisticTypes
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<GeneralLinguisticObject.LinguisticTypes>
- Enclosing class:
- GeneralLinguisticObject
public static enum GeneralLinguisticObject.LinguisticTypes
- extends java.lang.Enum<GeneralLinguisticObject.LinguisticTypes>
Currently supported LinguisticTypes (TMX, TERM, XLIFF)
- Author:
- klemens
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
TERM
public static final GeneralLinguisticObject.LinguisticTypes TERM
TMX
public static final GeneralLinguisticObject.LinguisticTypes TMX
XLIFF
public static final GeneralLinguisticObject.LinguisticTypes XLIFF
values
public static GeneralLinguisticObject.LinguisticTypes[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (GeneralLinguisticObject.LinguisticTypes c : GeneralLinguisticObject.LinguisticTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static GeneralLinguisticObject.LinguisticTypes valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null