Package net.webpdf.wsclient.openapi
Enum OperationToolboxTranscribeTranscribe.FailureLevelEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxTranscribeTranscribe.FailureLevelEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxTranscribeTranscribe.FailureLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxTranscribeTranscribe.FailureLevelEnum>
- Enclosing class:
- OperationToolboxTranscribeTranscribe
public static enum OperationToolboxTranscribeTranscribe.FailureLevelEnum extends Enum<OperationToolboxTranscribeTranscribe.FailureLevelEnum>
This parameter determines at which error level the conversion should fail, you can use this parameter to automatically reject also results with lower precision as failure * warning = Documents for which warnings occur will also cause the conversion to fail. * missingContent = Documents for which not all content could be converted correctly will also be considered as failures. * error = Only if a conversion of the document did not lead to any meaningful result document, this is evaluated as failure, even if contents should be missing.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORMISSINGCONTENTWARNING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxTranscribeTranscribe.FailureLevelEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxTranscribeTranscribe.FailureLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxTranscribeTranscribe.FailureLevelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WARNING
public static final OperationToolboxTranscribeTranscribe.FailureLevelEnum WARNING
-
MISSINGCONTENT
public static final OperationToolboxTranscribeTranscribe.FailureLevelEnum MISSINGCONTENT
-
ERROR
public static final OperationToolboxTranscribeTranscribe.FailureLevelEnum ERROR
-
-
Method Detail
-
values
public static OperationToolboxTranscribeTranscribe.FailureLevelEnum[] 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.FailureLevelEnum c : OperationToolboxTranscribeTranscribe.FailureLevelEnum.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.FailureLevelEnum 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.FailureLevelEnum>
-
fromValue
public static OperationToolboxTranscribeTranscribe.FailureLevelEnum fromValue(String value)
-
-