public enum ColumnSortType extends java.lang.Enum<ColumnSortType>
Enum Constant and Description |
---|
CODE |
QUALIFIER
The QUALIFIER.
|
RELATIONSHIP |
SOURCE_CODE |
SOURCE_ENTITY_DESCRIPTION |
TARGET_CODE |
TARGET_ENTITY_DESCRIPTION |
Modifier and Type | Method and Description |
---|---|
static ColumnSortType |
getColumnSortTypeForName(java.lang.String name)
Gets the column sort type for name.
|
protected java.lang.String |
getMappingColumn()
Gets the mapping column.
|
java.lang.String |
getName()
Gets the name.
|
java.lang.String |
getObjectColumn()
Gets the object column.
|
java.lang.String |
getRootColumn()
Gets the root column.
|
java.lang.String |
getSubjectColumn()
Gets the subject column.
|
java.lang.String |
getTailColumn()
Gets the tail column.
|
static ColumnSortType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnSortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnSortType CODE
public static final ColumnSortType SOURCE_CODE
public static final ColumnSortType TARGET_CODE
public static final ColumnSortType SOURCE_ENTITY_DESCRIPTION
public static final ColumnSortType TARGET_ENTITY_DESCRIPTION
public static final ColumnSortType QUALIFIER
public static final ColumnSortType RELATIONSHIP
public static ColumnSortType[] values()
for (ColumnSortType c : ColumnSortType.values()) System.out.println(c);
public static ColumnSortType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ColumnSortType getColumnSortTypeForName(java.lang.String name)
name
- the namepublic java.lang.String getName()
public java.lang.String getSubjectColumn()
public java.lang.String getObjectColumn()
public java.lang.String getRootColumn()
public java.lang.String getTailColumn()
protected java.lang.String getMappingColumn()