Package net.webpdf.wsclient.openapi
Enum OperationConvertPdfa.SuccessReportEnum
- java.lang.Object
-
- java.lang.Enum<OperationConvertPdfa.SuccessReportEnum>
-
- net.webpdf.wsclient.openapi.OperationConvertPdfa.SuccessReportEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationConvertPdfa.SuccessReportEnum>
- Enclosing class:
- OperationConvertPdfa
public static enum OperationConvertPdfa.SuccessReportEnum extends Enum<OperationConvertPdfa.SuccessReportEnum>
This parameter is used to define whether and in which format the XML report for a successful conversion will be returned. * none = An XML report will not be returned * linked = The XML report will be appended at the end of the PDF/A document. * zip = The PDF/A document and the XML report will be packaged together in a ZIP archive. **Tip:** The format of the document generated with \"errorReport\" and \"successReport\" is described by the http://schema.webpdf.de/1.0/report/pdfa.xsd schema.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationConvertPdfa.SuccessReportEnumfromValue(String value)StringgetValue()StringtoString()static OperationConvertPdfa.SuccessReportEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationConvertPdfa.SuccessReportEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationConvertPdfa.SuccessReportEnum NONE
-
ZIP
public static final OperationConvertPdfa.SuccessReportEnum ZIP
-
LINKED
public static final OperationConvertPdfa.SuccessReportEnum LINKED
-
-
Method Detail
-
values
public static OperationConvertPdfa.SuccessReportEnum[] 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 (OperationConvertPdfa.SuccessReportEnum c : OperationConvertPdfa.SuccessReportEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationConvertPdfa.SuccessReportEnum 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<OperationConvertPdfa.SuccessReportEnum>
-
fromValue
public static OperationConvertPdfa.SuccessReportEnum fromValue(String value)
-
-