Package org.omegat
Enum CLIParameters.PSEUDO_TRANSLATE_TYPE
- java.lang.Object
-
- java.lang.Enum<CLIParameters.PSEUDO_TRANSLATE_TYPE>
-
- org.omegat.CLIParameters.PSEUDO_TRANSLATE_TYPE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CLIParameters.PSEUDO_TRANSLATE_TYPE>
- Enclosing class:
- CLIParameters
public static enum CLIParameters.PSEUDO_TRANSLATE_TYPE extends java.lang.Enum<CLIParameters.PSEUDO_TRANSLATE_TYPE>
Choice of types of translation for all segments in the optional, special TMX file that contains all segments of the project. Value ofCLIParameters.PSEUDOTRANSLATETYPE
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CLIParameters.PSEUDO_TRANSLATE_TYPE
parse(java.lang.String s)
static CLIParameters.PSEUDO_TRANSLATE_TYPE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CLIParameters.PSEUDO_TRANSLATE_TYPE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final CLIParameters.PSEUDO_TRANSLATE_TYPE EQUAL
-
EMPTY
public static final CLIParameters.PSEUDO_TRANSLATE_TYPE EMPTY
-
-
Method Detail
-
values
public static CLIParameters.PSEUDO_TRANSLATE_TYPE[] 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 (CLIParameters.PSEUDO_TRANSLATE_TYPE c : CLIParameters.PSEUDO_TRANSLATE_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CLIParameters.PSEUDO_TRANSLATE_TYPE 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
-
parse
public static CLIParameters.PSEUDO_TRANSLATE_TYPE parse(java.lang.String s)
-
-