com.filenet.api.constants
Class AutoClassify
- java.lang.Object
-
- com.filenet.api.constants.AutoClassify
-
- All Implemented Interfaces:
- java.io.Serializable
public class AutoClassify extends java.lang.Object implements java.io.SerializableProvides a set of constants that indicates whether a document will be auto-classified during check-in.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static AutoClassifyAUTO_CLASSIFYIndicates that the document will be auto-classified during check-in.static AutoClassifyDO_NOT_AUTO_CLASSIFYIndicates that the document will not be auto-classified during check-in.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.BooleangetBooleanValue()Returns aBooleanrepresentation of this instance.static AutoClassifygetInstanceFromBoolean(boolean val)Returns the object instance from its associatedbooleanvaluebooleangetValue()Returns abooleanrepresentation of this instance.java.lang.StringtoString()Returns aStringrepresentation of this instance.
-
-
-
Field Detail
-
AUTO_CLASSIFY
public static final AutoClassify AUTO_CLASSIFY
Indicates that the document will be auto-classified during check-in.
-
DO_NOT_AUTO_CLASSIFY
public static final AutoClassify DO_NOT_AUTO_CLASSIFY
Indicates that the document will not be auto-classified during check-in.
-
-
Method Detail
-
getValue
public boolean getValue()
Returns abooleanrepresentation of this instance.- Returns:
- A
booleanrepresenting the instance.
-
getBooleanValue
public java.lang.Boolean getBooleanValue()
Returns aBooleanrepresentation of this instance.- Returns:
- A
Booleanrepresenting the instance.
-
getInstanceFromBoolean
public static AutoClassify getInstanceFromBoolean(boolean val)
Returns the object instance from its associatedbooleanvalue- Parameters:
val- Abooleanassociated with a particular instance of this class.- Returns:
- The referenced object instance.
-
toString
public java.lang.String toString()
Returns aStringrepresentation of this instance.- Overrides:
toStringin classjava.lang.Object- Returns:
- A
Stringrepresenting the instance.
-
-