Enum NativeDevice.Button
- java.lang.Object
-
- java.lang.Enum<NativeDevice.Button>
-
- com.stepover.opensignatureapi.device.nat.NativeDevice.Button
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NativeDevice.Button>
- Enclosing class:
- NativeDevice
public static enum NativeDevice.Button extends java.lang.Enum<NativeDevice.Button>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description int
buttonCode
java.lang.String
configName
NativeDevice.PadColor
defaultColor
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NativeDevice.Button
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NativeDevice.Button[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZoomIn
public static final NativeDevice.Button ZoomIn
-
ZoomOut
public static final NativeDevice.Button ZoomOut
-
NextPage
public static final NativeDevice.Button NextPage
-
PreviousPage
public static final NativeDevice.Button PreviousPage
-
StartSigning
public static final NativeDevice.Button StartSigning
-
NextSignature
public static final NativeDevice.Button NextSignature
-
PreviousSignature
public static final NativeDevice.Button PreviousSignature
-
RotateSignature
public static final NativeDevice.Button RotateSignature
-
AcceptSignature
public static final NativeDevice.Button AcceptSignature
-
RepeatSignature
public static final NativeDevice.Button RepeatSignature
-
CancelSignature
public static final NativeDevice.Button CancelSignature
-
AcceptSignatureInDoc
public static final NativeDevice.Button AcceptSignatureInDoc
-
RepeatSignatureInDoc
public static final NativeDevice.Button RepeatSignatureInDoc
-
CancelSignatureInDoc
public static final NativeDevice.Button CancelSignatureInDoc
-
NextSignatureInDoc
public static final NativeDevice.Button NextSignatureInDoc
-
PreviousSignatureInDoc
public static final NativeDevice.Button PreviousSignatureInDoc
-
RotateSignatureInDoc
public static final NativeDevice.Button RotateSignatureInDoc
-
-
Field Detail
-
configName
public java.lang.String configName
-
defaultColor
public NativeDevice.PadColor defaultColor
-
buttonCode
public int buttonCode
-
-
Method Detail
-
values
public static NativeDevice.Button[] 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.Button c : NativeDevice.Button.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.Button 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
-
-