Package net.webpdf.wsclient.openapi
Enum OperationFormsExport.FormatEnum
- java.lang.Object
-
- java.lang.Enum<OperationFormsExport.FormatEnum>
-
- net.webpdf.wsclient.openapi.OperationFormsExport.FormatEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationFormsExport.FormatEnum>
- Enclosing class:
- OperationFormsExport
public static enum OperationFormsExport.FormatEnum extends Enum<OperationFormsExport.FormatEnum>
Used to set the format for exporting the data in a PDF form: * xml = XML * fdf = FDF * xfdf = XFDF * xdp = XDP (only for PDF documents that contain XFA data) The exported data will be returned with the web service call as per the selected format. **Tip:** The format of this is described by the http://schema.webpdf.de/1.0/form/data.xsd schema.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationFormsExport.FormatEnumfromValue(String value)StringgetValue()StringtoString()static OperationFormsExport.FormatEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationFormsExport.FormatEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XML
public static final OperationFormsExport.FormatEnum XML
-
FDF
public static final OperationFormsExport.FormatEnum FDF
-
XFDF
public static final OperationFormsExport.FormatEnum XFDF
-
XDP
public static final OperationFormsExport.FormatEnum XDP
-
-
Method Detail
-
values
public static OperationFormsExport.FormatEnum[] 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 (OperationFormsExport.FormatEnum c : OperationFormsExport.FormatEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationFormsExport.FormatEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationFormsExport.FormatEnum>
-
fromValue
public static OperationFormsExport.FormatEnum fromValue(String value)
-
-