Enum NativeDevice.Mode
- java.lang.Object
-
- java.lang.Enum<NativeDevice.Mode>
-
- com.stepover.opensignatureapi.device.nat.NativeDevice.Mode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NativeDevice.Mode>
- Enclosing class:
- NativeDevice
public static enum NativeDevice.Mode extends java.lang.Enum<NativeDevice.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Calibration
Config
ContinuousScrolling
CustomerLogo
Dialog
DocSign
DocView
EasyDialog
Idle
PadOpenDirect
PadOpenSign
SignatureBmpPrepare
SignatureBmpRun
Signing
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasKeyEvent()
static NativeDevice.Mode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NativeDevice.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Signing
public static final NativeDevice.Mode Signing
-
CustomerLogo
public static final NativeDevice.Mode CustomerLogo
-
Calibration
public static final NativeDevice.Mode Calibration
-
SignatureBmpPrepare
public static final NativeDevice.Mode SignatureBmpPrepare
-
SignatureBmpRun
public static final NativeDevice.Mode SignatureBmpRun
-
DocView
public static final NativeDevice.Mode DocView
-
DocSign
public static final NativeDevice.Mode DocSign
-
Config
public static final NativeDevice.Mode Config
-
PadOpenSign
public static final NativeDevice.Mode PadOpenSign
-
PadOpenDirect
public static final NativeDevice.Mode PadOpenDirect
-
Dialog
public static final NativeDevice.Mode Dialog
-
EasyDialog
public static final NativeDevice.Mode EasyDialog
-
ContinuousScrolling
public static final NativeDevice.Mode ContinuousScrolling
-
Idle
public static final NativeDevice.Mode Idle
-
-
Method Detail
-
values
public static NativeDevice.Mode[] 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.Mode c : NativeDevice.Mode.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.Mode 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
-
hasKeyEvent
public boolean hasKeyEvent()
-
-