public enum SubmitFormFlag extends Enum<SubmitFormFlag>
Enumeration of possible submit form flags.
Enum Constant and Description |
---|
Fdf
Data will be returned in FDF format.
|
FdfWithComments
Data will be returned in FDF format with comments.
|
Html
Data will be returned in HTML format.
|
Pdf
Whole PDF file will be submitted.
|
Xfdf
Data will be returned in XFDF format.
|
XfdfWithComments
Data will be returned in XFDF format with comments.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static SubmitFormFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubmitFormFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmitFormFlag Fdf
Data will be returned in FDF format.
public static final SubmitFormFlag Html
Data will be returned in HTML format.
public static final SubmitFormFlag Xfdf
Data will be returned in XFDF format.
public static final SubmitFormFlag FdfWithComments
Data will be returned in FDF format with comments.
public static final SubmitFormFlag XfdfWithComments
Data will be returned in XFDF format with comments.
public static final SubmitFormFlag Pdf
Whole PDF file will be submitted.
public static SubmitFormFlag[] values()
for (SubmitFormFlag c : SubmitFormFlag.values()) System.out.println(c);
public static SubmitFormFlag 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.