Package org.apache.druid.query
Enum ResultSerializationMode
- java.lang.Object
-
- java.lang.Enum<ResultSerializationMode>
-
- org.apache.druid.query.ResultSerializationMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ResultSerializationMode>
public enum ResultSerializationMode extends Enum<ResultSerializationMode>
Serialization medium of the query results on the broker. It is currently used to communicate the result's format between the main query processing walker and the individual toolchests while materializing subquery's rows
-
-
Field Summary
Fields Modifier and Type Field Description static String
CTX_SERIALIZATION_PARAMETER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResultSerializationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ResultSerializationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROWS
public static final ResultSerializationMode ROWS
Materialize the inner results as rows
-
FRAMES
public static final ResultSerializationMode FRAMES
Materialize the inner results as frames
-
-
Field Detail
-
CTX_SERIALIZATION_PARAMETER
public static final String CTX_SERIALIZATION_PARAMETER
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ResultSerializationMode[] 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 (ResultSerializationMode c : ResultSerializationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultSerializationMode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-