public enum TranslationUnitField extends Enum<TranslationUnitField>
| Enum Constant and Description |
|---|
SOURCE |
SOURCE_CODES |
SOURCE_EXACT |
SOURCE_LANG |
TARGET |
TARGET_CODES |
TARGET_LANG |
| Modifier and Type | Method and Description |
|---|---|
static TranslationUnitField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TranslationUnitField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TranslationUnitField SOURCE_EXACT
public static final TranslationUnitField SOURCE
public static final TranslationUnitField TARGET
public static final TranslationUnitField SOURCE_LANG
public static final TranslationUnitField TARGET_LANG
public static final TranslationUnitField SOURCE_CODES
public static final TranslationUnitField TARGET_CODES
public static TranslationUnitField[] values()
for (TranslationUnitField c : TranslationUnitField.values()) System.out.println(c);
public static TranslationUnitField 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 nullCopyright © 2019. All rights reserved.