Package net.webpdf.wsclient.openapi
Enum OperationLayerStateSetOCGStateAction.StateEnum
- java.lang.Object
-
- java.lang.Enum<OperationLayerStateSetOCGStateAction.StateEnum>
-
- net.webpdf.wsclient.openapi.OperationLayerStateSetOCGStateAction.StateEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationLayerStateSetOCGStateAction.StateEnum>
- Enclosing class:
- OperationLayerStateSetOCGStateAction
public static enum OperationLayerStateSetOCGStateAction.StateEnum extends Enum<OperationLayerStateSetOCGStateAction.StateEnum>
The status change that should be carried out upon activation. * ON = The layer(s) will be shown. * OFF = The layer(s) will be hidden. * Toggle = The layer visibility will be switched.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationLayerStateSetOCGStateAction.StateEnumfromValue(String value)StringgetValue()StringtoString()static OperationLayerStateSetOCGStateAction.StateEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationLayerStateSetOCGStateAction.StateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ON
public static final OperationLayerStateSetOCGStateAction.StateEnum ON
-
OFF
public static final OperationLayerStateSetOCGStateAction.StateEnum OFF
-
TOGGLE
public static final OperationLayerStateSetOCGStateAction.StateEnum TOGGLE
-
-
Method Detail
-
values
public static OperationLayerStateSetOCGStateAction.StateEnum[] 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 (OperationLayerStateSetOCGStateAction.StateEnum c : OperationLayerStateSetOCGStateAction.StateEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationLayerStateSetOCGStateAction.StateEnum 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<OperationLayerStateSetOCGStateAction.StateEnum>
-
fromValue
public static OperationLayerStateSetOCGStateAction.StateEnum fromValue(String value)
-
-