Package com.attivio.sdk.search
Enum JoinRollupMode
- java.lang.Object
-
- java.lang.Enum<JoinRollupMode>
-
- com.attivio.sdk.search.JoinRollupMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JoinRollupMode>
public enum JoinRollupMode extends java.lang.Enum<JoinRollupMode>
Enumeration listing the possible rollup modes for joined documents.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JoinRollupMode
fromExternal(java.lang.String value)
Converts an external value to a type value.static JoinRollupMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JoinRollupMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGGREGATE
public static final JoinRollupMode AGGREGATE
Child documents will be aggregated into the primary document.
-
TREE
public static final JoinRollupMode TREE
Child documents will be represented as a tree of attached documents.
-
SQL
public static final JoinRollupMode SQL
Experimental: Result tree is flattened.
-
-
Method Detail
-
values
public static JoinRollupMode[] 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 (JoinRollupMode c : JoinRollupMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JoinRollupMode valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromExternal
public static JoinRollupMode fromExternal(java.lang.String value)
Converts an external value to a type value.- Parameters:
value
- the external value- Returns:
- the type
-
-