com.filenet.api.constants
Class JoinOperator
- java.lang.Object
-
- com.filenet.api.constants.JoinOperator
-
- All Implemented Interfaces:
- java.io.Serializable
public final class JoinOperator extends java.lang.Object implements java.io.SerializableSpecifies the type of join to use when querying multiple class instances (tables). This class is used when constructing SQL statements with theSearchSQLclass. The join type and behavior is that of the corresponding ANSI/ISO SQL99-compliant joins.
-
-
Field Summary
Fields Modifier and Type Field and Description static JoinOperatorFULL_OUTERIndicates a full outer join.static intFULL_OUTER_AS_INTAnintvalue associated with the FULL_OUTER instance of this class.static JoinOperatorINNERIndicates an inner join.static intINNER_AS_INTAnintvalue associated with the INNER instance of this class.static JoinOperatorLEFT_OUTERIndicates a left outer join.static intLEFT_OUTER_AS_INTAnintvalue associated with the LEFT_OUTER instance of this class.static JoinOperatorRIGHT_OUTERIndicates a right outer join.static intRIGHT_OUTER_AS_INTAnintvalue associated with the RIGHT_OUTER instance of this class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static JoinOperatorgetInstanceFromInt(int value)Returns an instance of this class using its associated integer value.intgetValue()Returns the internal integer value associated with a specific instance of this class.java.lang.StringtoString()Returns aStringrepresentation of this enumeration instance.
-
-
-
Field Detail
-
RIGHT_OUTER_AS_INT
public static final int RIGHT_OUTER_AS_INT
Anintvalue associated with the RIGHT_OUTER 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.- See Also:
- Constant Field Values
-
RIGHT_OUTER
public static final JoinOperator RIGHT_OUTER
Indicates a right outer join.
-
FULL_OUTER_AS_INT
public static final int FULL_OUTER_AS_INT
Anintvalue associated with the FULL_OUTER 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.- See Also:
- Constant Field Values
-
FULL_OUTER
public static final JoinOperator FULL_OUTER
Indicates a full outer join.
-
LEFT_OUTER_AS_INT
public static final int LEFT_OUTER_AS_INT
Anintvalue associated with the LEFT_OUTER 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.- See Also:
- Constant Field Values
-
LEFT_OUTER
public static final JoinOperator LEFT_OUTER
Indicates a left outer join.
-
INNER_AS_INT
public static final int INNER_AS_INT
Anintvalue associated with the INNER 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.- See Also:
- Constant Field Values
-
INNER
public static final JoinOperator INNER
Indicates an inner join.
-
-
Method Detail
-
getValue
public int getValue()
Returns the internal integer value associated with a specific instance of this class.- Returns:
- The enumeration instance's ordinal value.
- See Also:
getInstanceFromInt(int)
-
toString
public java.lang.String toString()
Returns aStringrepresentation of this enumeration instance.- Overrides:
toStringin classjava.lang.Object- Returns:
- The enumeration instance's description.
-
getInstanceFromInt
public static JoinOperator getInstanceFromInt(int value)
Returns an instance of this class using its associated integer value.- Parameters:
value- The integer value. (See the *_AS_INT fields.)- Returns:
- The enumeration instance with the given ordinal value.
- Throws:
EngineRuntimeException- If an enumeration instance with the given ordinal value does not exist.- See Also:
getValue()
-
-