Package net.webpdf.wsclient.openapi
Enum OperationConvertPdfa.ErrorReportEnum
- java.lang.Object
-
- java.lang.Enum<OperationConvertPdfa.ErrorReportEnum>
-
- net.webpdf.wsclient.openapi.OperationConvertPdfa.ErrorReportEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationConvertPdfa.ErrorReportEnum>
- Enclosing class:
- OperationConvertPdfa
public static enum OperationConvertPdfa.ErrorReportEnum extends Enum<OperationConvertPdfa.ErrorReportEnum>
This parameter is used to define whether and in which format the XML report for a failed conversion will be returned. * none = An XML report will not be returned * message = The XML report will be returned as part of the error message * file = The XML report will be saved in a file
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationConvertPdfa.ErrorReportEnumfromValue(String value)StringgetValue()StringtoString()static OperationConvertPdfa.ErrorReportEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationConvertPdfa.ErrorReportEnum[]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.ErrorReportEnum NONE
-
FILE
public static final OperationConvertPdfa.ErrorReportEnum FILE
-
MESSAGE
public static final OperationConvertPdfa.ErrorReportEnum MESSAGE
-
-
Method Detail
-
values
public static OperationConvertPdfa.ErrorReportEnum[] 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.ErrorReportEnum c : OperationConvertPdfa.ErrorReportEnum.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.ErrorReportEnum 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.ErrorReportEnum>
-
fromValue
public static OperationConvertPdfa.ErrorReportEnum fromValue(String value)
-
-