public enum FieldType extends Enum<FieldType>
Enumeration of possible field types.
Enum Constant and Description |
---|
Barcode
Barcode field.
|
CheckBox
Check box field.
|
ComboBox
Combo box field.
|
DateTime
Date/time field
|
Image
Image field.
|
InvalidNameOrType
Invalid field type.
|
ListBox
List box field.
|
MultiLineText
Multiline text field.
|
Numeric
Numeric field
|
PushButton
Push button field.
|
Radio
Radio button field.
|
Signature
Signature field.
|
Text
Text field.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldType Text
Text field.
public static final FieldType ComboBox
Combo box field.
public static final FieldType ListBox
List box field.
public static final FieldType Radio
Radio button field.
public static final FieldType CheckBox
Check box field.
public static final FieldType PushButton
Push button field.
public static final FieldType MultiLineText
Multiline text field.
public static final FieldType Barcode
Barcode field.
public static final FieldType InvalidNameOrType
Invalid field type.
public static final FieldType Signature
Signature field.
public static final FieldType Image
Image field.
public static final FieldType Numeric
Numeric field
public static final FieldType DateTime
Date/time field
public static FieldType[] values()
for (FieldType c : FieldType.values()) System.out.println(c);
public static FieldType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © 2024 Aspose. All Rights Reserved.