Enum MachineTranslationCloudConfig.TranslationProviderWorkflow
- java.lang.Object
-
- java.lang.Enum<MachineTranslationCloudConfig.TranslationProviderWorkflow>
-
- com.adobe.granite.translation.core.MachineTranslationCloudConfig.TranslationProviderWorkflow
-
- All Implemented Interfaces:
Serializable
,Comparable<MachineTranslationCloudConfig.TranslationProviderWorkflow>
- Enclosing interface:
- MachineTranslationCloudConfig
public static enum MachineTranslationCloudConfig.TranslationProviderWorkflow extends Enum<MachineTranslationCloudConfig.TranslationProviderWorkflow>
Enum TranslationProviderWorkflow.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HUMAN_TRANSLATION
human translationMACHIN_TRANSLATION_POST_EDIT_BEFORE_PUBLISH
Machine Translation & Post Edit before publishingMACHINE_TRANSLATION
machine translationMACHINE_TRANSLATION_POST_EDIT_LATER
Machine Translation & Post Edit Later
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MachineTranslationCloudConfig.TranslationProviderWorkflow
valueOf(String name)
Returns the enum constant of this type with the specified name.static MachineTranslationCloudConfig.TranslationProviderWorkflow[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MACHINE_TRANSLATION
public static final MachineTranslationCloudConfig.TranslationProviderWorkflow MACHINE_TRANSLATION
machine translation
-
HUMAN_TRANSLATION
public static final MachineTranslationCloudConfig.TranslationProviderWorkflow HUMAN_TRANSLATION
human translation
-
MACHINE_TRANSLATION_POST_EDIT_LATER
public static final MachineTranslationCloudConfig.TranslationProviderWorkflow MACHINE_TRANSLATION_POST_EDIT_LATER
Machine Translation & Post Edit Later
-
MACHIN_TRANSLATION_POST_EDIT_BEFORE_PUBLISH
public static final MachineTranslationCloudConfig.TranslationProviderWorkflow MACHIN_TRANSLATION_POST_EDIT_BEFORE_PUBLISH
Machine Translation & Post Edit before publishing
-
-
Method Detail
-
values
public static MachineTranslationCloudConfig.TranslationProviderWorkflow[] 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 (MachineTranslationCloudConfig.TranslationProviderWorkflow c : MachineTranslationCloudConfig.TranslationProviderWorkflow.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MachineTranslationCloudConfig.TranslationProviderWorkflow valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-