Package net.webpdf.wsclient.openapi
Enum OperationToolboxTranscribeTranscribe.SuccessReportEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxTranscribeTranscribe.SuccessReportEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxTranscribeTranscribe.SuccessReportEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxTranscribeTranscribe.SuccessReportEnum>
- Enclosing class:
- OperationToolboxTranscribeTranscribe
public static enum OperationToolboxTranscribeTranscribe.SuccessReportEnum extends Enum<OperationToolboxTranscribeTranscribe.SuccessReportEnum>
This parameter determines if and in which form the XML report for a successful conversion is returned. * none = XML report is not returned * linked = XML report is appended to the end of the target document. * zip = target document and XML report are packed together in a ZIP archive. **Important:** The format of the document created at \"errorReport\" and \"successReport\" is described via the http://schema.webpdf.de/1.0/report/transcribe.xsd schema.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxTranscribeTranscribe.SuccessReportEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxTranscribeTranscribe.SuccessReportEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxTranscribeTranscribe.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 OperationToolboxTranscribeTranscribe.SuccessReportEnum NONE
-
ZIP
public static final OperationToolboxTranscribeTranscribe.SuccessReportEnum ZIP
-
LINKED
public static final OperationToolboxTranscribeTranscribe.SuccessReportEnum LINKED
-
-
Method Detail
-
values
public static OperationToolboxTranscribeTranscribe.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 (OperationToolboxTranscribeTranscribe.SuccessReportEnum c : OperationToolboxTranscribeTranscribe.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 OperationToolboxTranscribeTranscribe.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<OperationToolboxTranscribeTranscribe.SuccessReportEnum>
-
fromValue
public static OperationToolboxTranscribeTranscribe.SuccessReportEnum fromValue(String value)
-
-