Enum JadiceDocumentInfoNode.UnhandledFormatAction
- java.lang.Object
-
- java.lang.Enum<JadiceDocumentInfoNode.UnhandledFormatAction>
-
- com.levigo.jadice.server.documentplatform.JadiceDocumentInfoNode.UnhandledFormatAction
-
- All Implemented Interfaces:
Serializable
,Comparable<JadiceDocumentInfoNode.UnhandledFormatAction>
- Enclosing class:
- JadiceDocumentInfoNode
public static enum JadiceDocumentInfoNode.UnhandledFormatAction extends Enum<JadiceDocumentInfoNode.UnhandledFormatAction>
Possible action when a given document cannot be analyzed because its format is unknown or not supported by the jadice document platform.- Since:
- jadice server 4.3.1.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORT
Abort the complete jobIGNORE_DOCUMENT
Send a warning to the client, but ignore the document and do not process it.WARN
Send a warning to the client and process the document.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JadiceDocumentInfoNode.UnhandledFormatAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static JadiceDocumentInfoNode.UnhandledFormatAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORE_DOCUMENT
public static final JadiceDocumentInfoNode.UnhandledFormatAction IGNORE_DOCUMENT
Send a warning to the client, but ignore the document and do not process it.
-
WARN
public static final JadiceDocumentInfoNode.UnhandledFormatAction WARN
Send a warning to the client and process the document. The result might not be as expected.
-
ABORT
public static final JadiceDocumentInfoNode.UnhandledFormatAction ABORT
Abort the complete job
-
-
Method Detail
-
values
public static JadiceDocumentInfoNode.UnhandledFormatAction[] 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 (JadiceDocumentInfoNode.UnhandledFormatAction c : JadiceDocumentInfoNode.UnhandledFormatAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JadiceDocumentInfoNode.UnhandledFormatAction 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
-
-