@Generated(value="OracleSDKGenerator", comments="API Version: 20200601") public class AbstractColumn extends Object
Generic column defining all attributes common to all querylanguage columns.
Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the Builder
, which maintain a set of all explicitly set fields called
#__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
#__explicitlySet__
into account. The constructor, on the other hand, does not set #__explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).Modifier and Type | Class and Description |
---|---|
static class |
AbstractColumn.Type
Column classification when column requires special designation.
|
Modifier | Constructor and Description |
---|---|
protected |
AbstractColumn(String displayName,
SubSystemName subSystem,
List<FieldValue> values,
Boolean isListOfValues,
Boolean isMultiValued,
Boolean isGroupable,
Boolean isEvaluable,
ValueType valueType,
String originalDisplayName,
String internalName)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
canEqual(Object other) |
boolean |
equals(Object o) |
String |
getDisplayName()
Column display name - will be alias if column is renamed by queryStrng.
|
String |
getInternalName()
Internal identifier for the column.
|
Boolean |
getIsEvaluable()
Identifies if this column can be used as an expression parameter in any command that accepts querylanguage expressions.
|
Boolean |
getIsGroupable()
Identifies if this column can be used as a grouping field in any grouping command.
|
Boolean |
getIsListOfValues()
Identifies if all values in this column come from a pre-defined list of values.
|
Boolean |
getIsMultiValued()
Identifies if this column allows multiple values to exist in a single row.
|
String |
getOriginalDisplayName()
Same as displayName unless column renamed in which case this will hold the original display name for the column.
|
SubSystemName |
getSubSystem()
Subsystem column belongs to.
|
List<FieldValue> |
getValues()
If the column is a ‘List of Values’ column, this array contains the field values that are applicable to query results or all if no filters applied.
|
ValueType |
getValueType()
Field denoting column data type.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"displayName","subSystem","values","isListOfValues","isMultiValued","isGroupable","isEvaluable","valueType","originalDisplayName","internalName"}) @Deprecated protected AbstractColumn(String displayName, SubSystemName subSystem, List<FieldValue> values, Boolean isListOfValues, Boolean isMultiValued, Boolean isGroupable, Boolean isEvaluable, ValueType valueType, String originalDisplayName, String internalName)
public String getDisplayName()
Column display name - will be alias if column is renamed by queryStrng.
public SubSystemName getSubSystem()
Subsystem column belongs to.
public List<FieldValue> getValues()
If the column is a ‘List of Values’ column, this array contains the field values that are applicable to query results or all if no filters applied.
public Boolean getIsListOfValues()
Identifies if all values in this column come from a pre-defined list of values.
public Boolean getIsMultiValued()
Identifies if this column allows multiple values to exist in a single row.
public Boolean getIsGroupable()
Identifies if this column can be used as a grouping field in any grouping command.
public Boolean getIsEvaluable()
Identifies if this column can be used as an expression parameter in any command that accepts querylanguage expressions.
public ValueType getValueType()
Field denoting column data type.
public String getOriginalDisplayName()
Same as displayName unless column renamed in which case this will hold the original display name for the column.
public String getInternalName()
Internal identifier for the column.
protected boolean canEqual(Object other)
Copyright © 2016–2021. All rights reserved.