Enum NodeConstants.Info
- java.lang.Object
-
- java.lang.Enum<NodeConstants.Info>
-
- org.teiid.query.optimizer.relational.plantree.NodeConstants.Info
-
- All Implemented Interfaces:
Serializable
,Comparable<NodeConstants.Info>
- Enclosing class:
- NodeConstants
public static enum NodeConstants.Info extends Enum<NodeConstants.Info>
Property names for type-specific node properties
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeConstants.Info
valueOf(String name)
Returns the enum constant of this type with the specified name.static NodeConstants.Info[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATOMIC_REQUEST
public static final NodeConstants.Info ATOMIC_REQUEST
-
MODEL_ID
public static final NodeConstants.Info MODEL_ID
-
PROCEDURE_CRITERIA
public static final NodeConstants.Info PROCEDURE_CRITERIA
-
PROCEDURE_INPUTS
public static final NodeConstants.Info PROCEDURE_INPUTS
-
PROCEDURE_DEFAULTS
public static final NodeConstants.Info PROCEDURE_DEFAULTS
-
IS_MULTI_SOURCE
public static final NodeConstants.Info IS_MULTI_SOURCE
-
SOURCE_NAME
public static final NodeConstants.Info SOURCE_NAME
-
CONFORMED_SOURCES
public static final NodeConstants.Info CONFORMED_SOURCES
-
SUB_PLAN
public static final NodeConstants.Info SUB_PLAN
-
SUB_PLANS
public static final NodeConstants.Info SUB_PLANS
-
SET_OPERATION
public static final NodeConstants.Info SET_OPERATION
-
USE_ALL
public static final NodeConstants.Info USE_ALL
-
JOIN_CRITERIA
public static final NodeConstants.Info JOIN_CRITERIA
-
JOIN_TYPE
public static final NodeConstants.Info JOIN_TYPE
-
SINGLE_MATCH
public static final NodeConstants.Info SINGLE_MATCH
-
JOIN_STRATEGY
public static final NodeConstants.Info JOIN_STRATEGY
-
LEFT_EXPRESSIONS
public static final NodeConstants.Info LEFT_EXPRESSIONS
-
RIGHT_EXPRESSIONS
public static final NodeConstants.Info RIGHT_EXPRESSIONS
-
DEPENDENT_VALUE_SOURCE
public static final NodeConstants.Info DEPENDENT_VALUE_SOURCE
-
NON_EQUI_JOIN_CRITERIA
public static final NodeConstants.Info NON_EQUI_JOIN_CRITERIA
-
SORT_LEFT
public static final NodeConstants.Info SORT_LEFT
-
SORT_RIGHT
public static final NodeConstants.Info SORT_RIGHT
-
IS_OPTIONAL
public static final NodeConstants.Info IS_OPTIONAL
-
IS_LEFT_DISTINCT
public static final NodeConstants.Info IS_LEFT_DISTINCT
-
IS_RIGHT_DISTINCT
public static final NodeConstants.Info IS_RIGHT_DISTINCT
-
IS_SEMI_DEP
public static final NodeConstants.Info IS_SEMI_DEP
-
PRESERVE
public static final NodeConstants.Info PRESERVE
-
RIGHT_NESTED_REFERENCES
public static final NodeConstants.Info RIGHT_NESTED_REFERENCES
-
PROJECT_COLS
public static final NodeConstants.Info PROJECT_COLS
-
INTO_GROUP
public static final NodeConstants.Info INTO_GROUP
-
HAS_WINDOW_FUNCTIONS
public static final NodeConstants.Info HAS_WINDOW_FUNCTIONS
-
CONSTRAINT
public static final NodeConstants.Info CONSTRAINT
-
UPSERT
public static final NodeConstants.Info UPSERT
-
SELECT_CRITERIA
public static final NodeConstants.Info SELECT_CRITERIA
-
IS_HAVING
public static final NodeConstants.Info IS_HAVING
-
IS_PHANTOM
public static final NodeConstants.Info IS_PHANTOM
-
IS_TEMPORARY
public static final NodeConstants.Info IS_TEMPORARY
-
IS_COPIED
public static final NodeConstants.Info IS_COPIED
-
IS_PUSHED
public static final NodeConstants.Info IS_PUSHED
-
IS_DEPENDENT_SET
public static final NodeConstants.Info IS_DEPENDENT_SET
-
SORT_ORDER
public static final NodeConstants.Info SORT_ORDER
-
UNRELATED_SORT
public static final NodeConstants.Info UNRELATED_SORT
-
IS_DUP_REMOVAL
public static final NodeConstants.Info IS_DUP_REMOVAL
-
SYMBOL_MAP
public static final NodeConstants.Info SYMBOL_MAP
-
PARTITION_INFO
public static final NodeConstants.Info PARTITION_INFO
-
VIRTUAL_COMMAND
public static final NodeConstants.Info VIRTUAL_COMMAND
-
MAKE_DEP
public static final NodeConstants.Info MAKE_DEP
-
PROCESSOR_PLAN
public static final NodeConstants.Info PROCESSOR_PLAN
-
NESTED_COMMAND
public static final NodeConstants.Info NESTED_COMMAND
-
TABLE_FUNCTION
public static final NodeConstants.Info TABLE_FUNCTION
-
CORRELATED_REFERENCES
public static final NodeConstants.Info CORRELATED_REFERENCES
-
MAKE_NOT_DEP
public static final NodeConstants.Info MAKE_NOT_DEP
-
INLINE_VIEW
public static final NodeConstants.Info INLINE_VIEW
-
NO_UNNEST
public static final NodeConstants.Info NO_UNNEST
-
MAKE_IND
public static final NodeConstants.Info MAKE_IND
-
SOURCE_HINT
public static final NodeConstants.Info SOURCE_HINT
-
CHECK_MAT_VIEW
public static final NodeConstants.Info CHECK_MAT_VIEW
-
GROUP_COLS
public static final NodeConstants.Info GROUP_COLS
-
ROLLUP
public static final NodeConstants.Info ROLLUP
-
OUTPUT_COLS
public static final NodeConstants.Info OUTPUT_COLS
-
EST_SET_SIZE
public static final NodeConstants.Info EST_SET_SIZE
-
EST_DEP_CARDINALITY
public static final NodeConstants.Info EST_DEP_CARDINALITY
-
EST_DEP_JOIN_COST
public static final NodeConstants.Info EST_DEP_JOIN_COST
-
EST_JOIN_COST
public static final NodeConstants.Info EST_JOIN_COST
-
EST_CARDINALITY
public static final NodeConstants.Info EST_CARDINALITY
-
EST_COL_STATS
public static final NodeConstants.Info EST_COL_STATS
-
EST_SELECTIVITY
public static final NodeConstants.Info EST_SELECTIVITY
-
MAX_TUPLE_LIMIT
public static final NodeConstants.Info MAX_TUPLE_LIMIT
-
OFFSET_TUPLE_COUNT
public static final NodeConstants.Info OFFSET_TUPLE_COUNT
-
IS_IMPLICIT_LIMIT
public static final NodeConstants.Info IS_IMPLICIT_LIMIT
-
IS_NON_STRICT
public static final NodeConstants.Info IS_NON_STRICT
-
ACCESS_PATTERNS
public static final NodeConstants.Info ACCESS_PATTERNS
-
ACCESS_PATTERN_USED
public static final NodeConstants.Info ACCESS_PATTERN_USED
-
REQUIRED_ACCESS_PATTERN_GROUPS
public static final NodeConstants.Info REQUIRED_ACCESS_PATTERN_GROUPS
-
APPROXIMATE_OUTPUT_COLUMNS
public static final NodeConstants.Info APPROXIMATE_OUTPUT_COLUMNS
-
-
Method Detail
-
values
public static NodeConstants.Info[] 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 (NodeConstants.Info c : NodeConstants.Info.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeConstants.Info 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
-
-