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 SummaryEnum Constants Enum Constant Description NextPagePreviousPageRotateZoomInZoomOut
 - 
Field SummaryFields Modifier and Type Field Description intbuttonCode
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static NativeDevice.DocViewButtonvalueOf(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- 
NextPagepublic static final NativeDevice.DocViewButton NextPage 
 - 
PreviousPagepublic static final NativeDevice.DocViewButton PreviousPage 
 - 
ZoomInpublic static final NativeDevice.DocViewButton ZoomIn 
 - 
ZoomOutpublic static final NativeDevice.DocViewButton ZoomOut 
 - 
Rotatepublic static final NativeDevice.DocViewButton Rotate 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-