Enum NativeDevice.DocViewButton
- java.lang.Object
-
- java.lang.Enum<NativeDevice.DocViewButton>
-
- com.stepover.opensignatureapi.device.nat.NativeDevice.DocViewButton
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NativeDevice.DocViewButton>
- Enclosing class:
- NativeDevice
public static enum NativeDevice.DocViewButton extends java.lang.Enum<NativeDevice.DocViewButton>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NextPage
PreviousPage
Rotate
ZoomIn
ZoomOut
-
Field Summary
Fields Modifier and Type Field Description int
buttonCode
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NativeDevice.DocViewButton
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NativeDevice.DocViewButton[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NextPage
public static final NativeDevice.DocViewButton NextPage
-
PreviousPage
public static final NativeDevice.DocViewButton PreviousPage
-
ZoomIn
public static final NativeDevice.DocViewButton ZoomIn
-
ZoomOut
public static final NativeDevice.DocViewButton ZoomOut
-
Rotate
public static final NativeDevice.DocViewButton Rotate
-
-
Method Detail
-
values
public static NativeDevice.DocViewButton[] 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 (NativeDevice.DocViewButton c : NativeDevice.DocViewButton.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NativeDevice.DocViewButton 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
-
-