public final enum

FormType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.forms.FormType

Class Overview

All supported form types.

Summary

Enum Values
FormType  CHECKBOX  Control which toggles between two states - on and off. 
FormType  COMBOBOX  Control which displays drop-down list optionally accompanied by an editable text box in which the user can type a value other than the predefined choices. 
FormType  LISTBOX  Control which displays scrollable list with choices. 
FormType  PUSHBUTTON  Simple push button. 
FormType  RADIOBUTTON  Sets of related buttons that can each be on or off. 
FormType  SIGNATURE  Control which contains digital signature. 
FormType  TEXT  Text field control. 
FormType  UNDEFINED  Any form type whose type couldn't be recognized. 
Public Methods
static FormType valueOf(String name)
final static FormType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final FormType CHECKBOX

Control which toggles between two states - on and off.

public static final FormType COMBOBOX

Control which displays drop-down list optionally accompanied by an editable text box in which the user can type a value other than the predefined choices.

public static final FormType LISTBOX

Control which displays scrollable list with choices.

public static final FormType PUSHBUTTON

Simple push button.

public static final FormType RADIOBUTTON

Sets of related buttons that can each be on or off. Typically, at most one radio button in a set may be on at any given time.

public static final FormType SIGNATURE

Control which contains digital signature.

public static final FormType TEXT

Text field control. Text field is a box or space in which the user can enter text.

public static final FormType UNDEFINED

Any form type whose type couldn't be recognized.

Public Methods

public static FormType valueOf (String name)

public static final FormType[] values ()