Enum MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow
- java.lang.Object
-
- java.lang.Enum<MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow>
-
- com.adobe.granite.translation.core.MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow>
- Enclosing interface:
- MachineTranslationCloudConfig
public static enum MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow extends java.lang.Enum<MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DO_NOT_TRANSLATE
DO not translateUSE_ASSETS_WORKFLOW
Use Assets workflowUSE_SITES_WORKFLOW
Use Sites workflow
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DO_NOT_TRANSLATE
public static final MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow DO_NOT_TRANSLATE
DO not translate
-
USE_SITES_WORKFLOW
public static final MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow USE_SITES_WORKFLOW
Use Sites workflow
-
USE_ASSETS_WORKFLOW
public static final MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow USE_ASSETS_WORKFLOW
Use Assets workflow
-
-
Method Detail
-
values
public static MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow[] 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.TranslationEmbeddedAssetsWorkflow c : MachineTranslationCloudConfig.TranslationEmbeddedAssetsWorkflow.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.TranslationEmbeddedAssetsWorkflow 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 namejava.lang.NullPointerException
- if the argument is null
-
-