public static enum TextEditOptions.LanguageTransformation extends Enum<TextEditOptions.LanguageTransformation>
Language transformation modes
Enum Constant and Description |
---|
Default
Default language transformation is performed.
|
ExactlyAsISee
Language transformation is performed the same way as in a text editor.
|
None
Language transformation is not performed.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static TextEditOptions.LanguageTransformation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextEditOptions.LanguageTransformation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextEditOptions.LanguageTransformation Default
Default language transformation is performed.
public static final TextEditOptions.LanguageTransformation ExactlyAsISee
Language transformation is performed the same way as in a text editor. It usually means text will looks in the document exactly as You see it in code. But no warranties.
public static final TextEditOptions.LanguageTransformation None
Language transformation is not performed.
public static TextEditOptions.LanguageTransformation[] values()
for (TextEditOptions.LanguageTransformation c : TextEditOptions.LanguageTransformation.values()) System.out.println(c);
public static TextEditOptions.LanguageTransformation 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 nullpublic int getValue()
Copyright © 2024 Aspose. All Rights Reserved.