public enum SelectionType extends Enum<SelectionType>
Enum Constant and Description |
---|
CHILDREN
Selection for the children of a given parent id.
|
SERIES_PROXIES
Selection for the proxies of a given version series.
|
SERIES_VERSIONS
Selection for the versions of a given version series.
|
TARGET_PROXIES
Selection for the proxies of a given target.
|
Modifier and Type | Field and Description |
---|---|
String |
criterionKey
The key to use to additionally filter on criterion.
|
String |
filterKey
The key to use to additionally filter on fragment values.
|
String |
invalidationTableName
Pseudo-table to use to notify about selection invalidation.
|
String |
selKey
The key for the selection id.
|
String |
tableName
The table name for this selection.
|
Modifier and Type | Method and Description |
---|---|
static SelectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionType CHILDREN
public static final SelectionType SERIES_VERSIONS
public static final SelectionType SERIES_PROXIES
public static final SelectionType TARGET_PROXIES
public final String tableName
public final String selKey
For instance for a children selection this is the parent id.
public final String filterKey
For instance for a children selection this is the child name.
public final String criterionKey
For instance for a children selection this is the complex property flag.
This can be null
for no criterion filtering.
public final String invalidationTableName
public static SelectionType[] values()
for (SelectionType c : SelectionType.values()) System.out.println(c);
public static SelectionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2011 Nuxeo SA. All Rights Reserved.