Enum LinkDataFetchMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<LinkDataFetchMode>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIn this mode, link data is fetched from theResultTree.linkDataSource
and nodes are separately fetched from theResultTree.dataSource
.In this mode, nodes and link data are fetched together from the mainResultTree.dataSource
, and any duplicated node IDs are handled by creating multiple links to a single node. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static LinkDataFetchMode
Returns the enum constant of this type with the specified name.static LinkDataFetchMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SEPARATE
In this mode, link data is fetched from theResultTree.linkDataSource
and nodes are separately fetched from theResultTree.dataSource
. The two fetches are sent together in aqueue
, with the link data fetch first and the separate node fetch second. This makes it possible for your server-side code to use the results of the link data fetch to constrain the node fetch (ie, only fetch node information for nodes that appear in a link)If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "separate". -
SINGLE
In this mode, nodes and link data are fetched together from the mainResultTree.dataSource
, and any duplicated node IDs are handled by creating multiple links to a single node. In this mode, theResultTree.linkDataSource
is only used for update operations.Note that the end result of a "single" fetch is exactly the same as fetching link data and nodes separately using "separate" mode; "separate" mode is also conceptually clearer since it emphasises the fact that nodes and link data are separate things. We provide "single" mode because, in some cases, it may be more efficient to fetch the two types of data together in a single database fetch, using
DataSourceField.includeFrom
or some other kind of join technique on the server.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "single".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-