Package net.webpdf.wsclient.openapi
Enum OperationViewerPreferences.TextDirectionEnum
- java.lang.Object
-
- java.lang.Enum<OperationViewerPreferences.TextDirectionEnum>
-
- net.webpdf.wsclient.openapi.OperationViewerPreferences.TextDirectionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationViewerPreferences.TextDirectionEnum>
- Enclosing class:
- OperationViewerPreferences
public static enum OperationViewerPreferences.TextDirectionEnum extends Enum<OperationViewerPreferences.TextDirectionEnum>
Specifies the text reading direction for the display program's read aloud. * leftToRight = From left to right. * rightToLeft = From right to left. (Including vertical fonts, such as: Chinese, Japanese, Korean, etc.).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEFTTORIGHTRIGHTTOLEFT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationViewerPreferences.TextDirectionEnumfromValue(String value)StringgetValue()StringtoString()static OperationViewerPreferences.TextDirectionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationViewerPreferences.TextDirectionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFTTORIGHT
public static final OperationViewerPreferences.TextDirectionEnum LEFTTORIGHT
-
RIGHTTOLEFT
public static final OperationViewerPreferences.TextDirectionEnum RIGHTTOLEFT
-
-
Method Detail
-
values
public static OperationViewerPreferences.TextDirectionEnum[] 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 (OperationViewerPreferences.TextDirectionEnum c : OperationViewerPreferences.TextDirectionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationViewerPreferences.TextDirectionEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationViewerPreferences.TextDirectionEnum>
-
fromValue
public static OperationViewerPreferences.TextDirectionEnum fromValue(String value)
-
-