Package net.webpdf.wsclient.openapi
Enum MetadataFormDocument.FormTypeEnum
- java.lang.Object
-
- java.lang.Enum<MetadataFormDocument.FormTypeEnum>
-
- net.webpdf.wsclient.openapi.MetadataFormDocument.FormTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataFormDocument.FormTypeEnum>
- Enclosing class:
- MetadataFormDocument
public static enum MetadataFormDocument.FormTypeEnum extends Enum<MetadataFormDocument.FormTypeEnum>
When set to another value than \"none\", the document does contain a PDF form in the hereby given format. * none = The document does not contain a form. * acroForm = The document contains a standard PDF Acroform. * staticXFA = The document contains a \"XML Forms Architecture\" form with a fixed layout (static). * dynamicXFA = The document contains a \"XML Forms Architecture\" form with an adaptable/interactive layout (dynamic).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACROFORMDYNAMICXFANONESTATICXFA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataFormDocument.FormTypeEnumfromValue(String value)StringgetValue()StringtoString()static MetadataFormDocument.FormTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataFormDocument.FormTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final MetadataFormDocument.FormTypeEnum NONE
-
ACROFORM
public static final MetadataFormDocument.FormTypeEnum ACROFORM
-
STATICXFA
public static final MetadataFormDocument.FormTypeEnum STATICXFA
-
DYNAMICXFA
public static final MetadataFormDocument.FormTypeEnum DYNAMICXFA
-
-
Method Detail
-
values
public static MetadataFormDocument.FormTypeEnum[] 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 (MetadataFormDocument.FormTypeEnum c : MetadataFormDocument.FormTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataFormDocument.FormTypeEnum 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<MetadataFormDocument.FormTypeEnum>
-
fromValue
public static MetadataFormDocument.FormTypeEnum fromValue(String value)
-
-