Package net.webpdf.wsclient.openapi
Enum OperationConverterHtmlErrorReport.ModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationConverterHtmlErrorReport.ModeEnum>
-
- net.webpdf.wsclient.openapi.OperationConverterHtmlErrorReport.ModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationConverterHtmlErrorReport.ModeEnum>
- Enclosing class:
- OperationConverterHtmlErrorReport
public static enum OperationConverterHtmlErrorReport.ModeEnum extends Enum<OperationConverterHtmlErrorReport.ModeEnum>
This parameter specifies whether HTML content errors should be detected and, if so, how to provide a report with the errors. A detected error can be a failed download of a resource (for example, an image) or a script or CSS syntax error. * none = No content errors are detected and no report is generated and returned. * message = Content errors are detected and the report is returned as part of the error message
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationConverterHtmlErrorReport.ModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationConverterHtmlErrorReport.ModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationConverterHtmlErrorReport.ModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationConverterHtmlErrorReport.ModeEnum NONE
-
MESSAGE
public static final OperationConverterHtmlErrorReport.ModeEnum MESSAGE
-
-
Method Detail
-
values
public static OperationConverterHtmlErrorReport.ModeEnum[] 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 (OperationConverterHtmlErrorReport.ModeEnum c : OperationConverterHtmlErrorReport.ModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationConverterHtmlErrorReport.ModeEnum 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<OperationConverterHtmlErrorReport.ModeEnum>
-
fromValue
public static OperationConverterHtmlErrorReport.ModeEnum fromValue(String value)
-
-