public final class DocClassificationStatus
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
static DocClassificationStatus |
CLASSIFICATION_COMPLETE
Specifies that auto-classification of the document has completed successfully.
|
static int |
CLASSIFICATION_COMPLETE_AS_INT
An
int value associated with the CLASSIFICATION_COMPLETE instance of this class. |
static DocClassificationStatus |
CLASSIFICATION_FAILED
Specifies that auto-classification of the document has failed.
|
static int |
CLASSIFICATION_FAILED_AS_INT
An
int value associated with the CLASSIFICATION_FAILED instance of this class. |
static DocClassificationStatus |
CLASSIFICATION_PENDING
Specifies that a request for auto-classification of the document is pending.
|
static int |
CLASSIFICATION_PENDING_AS_INT
An
int value associated with the CLASSIFICATION_PENDING instance of this class. |
static DocClassificationStatus |
NOT_CLASSIFIED
Specifies that auto-classification of the document has not been requested.
|
static int |
NOT_CLASSIFIED_AS_INT
An
int value associated with the NOT_CLASSIFIED instance of this class. |
Modifier and Type | Method and Description |
---|---|
static DocClassificationStatus |
getInstanceFromInt(int value)
Returns an instance of this class using its associated integer value.
|
int |
getValue()
Returns the internal integer value associated with a specific instance of this class.
|
java.lang.String |
toString()
Returns a
String representation of this enumeration instance. |
public static final int NOT_CLASSIFIED_AS_INT
int
value associated with the NOT_CLASSIFIED instance of this class. Consider using the static instances of this class instead of the associated int values. The int values risk binary incompatibility (but not source incompatibility) from release to release.public static final DocClassificationStatus NOT_CLASSIFIED
checkin
method's autoClassify
parameter
to DO_NOT_AUTO_CLASSIFY
.public static final int CLASSIFICATION_FAILED_AS_INT
int
value associated with the CLASSIFICATION_FAILED instance of this class. Consider using the static instances of this class instead of the associated int values. The int values risk binary incompatibility (but not source incompatibility) from release to release.public static final DocClassificationStatus CLASSIFICATION_FAILED
public static final int CLASSIFICATION_COMPLETE_AS_INT
int
value associated with the CLASSIFICATION_COMPLETE instance of this class. Consider using the static instances of this class instead of the associated int values. The int values risk binary incompatibility (but not source incompatibility) from release to release.public static final DocClassificationStatus CLASSIFICATION_COMPLETE
public static final int CLASSIFICATION_PENDING_AS_INT
int
value associated with the CLASSIFICATION_PENDING instance of this class. Consider using the static instances of this class instead of the associated int values. The int values risk binary incompatibility (but not source incompatibility) from release to release.public static final DocClassificationStatus CLASSIFICATION_PENDING
checkin
method's autoClassify
parameter
to AUTO_CLASSIFY
.public int getValue()
getInstanceFromInt(int)
public java.lang.String toString()
String
representation of this enumeration instance.toString
in class java.lang.Object
public static DocClassificationStatus getInstanceFromInt(int value)
value
- The integer value. (See the *_AS_INT fields.)EngineRuntimeException
- If an enumeration instance with the given
ordinal value does not exist.getValue()
© Copyright IBM Corporation 2006, 2015. All rights reserved.