Package stroom.query.api.v2
Enum ResultRequest.ResultStyle
- java.lang.Object
-
- java.lang.Enum<ResultRequest.ResultStyle>
-
- stroom.query.api.v2.ResultRequest.ResultStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResultRequest.ResultStyle>
,java.lang.constant.Constable
- Enclosing class:
- ResultRequest
public static enum ResultRequest.ResultStyle extends java.lang.Enum<ResultRequest.ResultStyle>
-
-
Method Summary
Modifier and Type Method Description static ResultRequest.ResultStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResultRequest.ResultStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FLAT
public static final ResultRequest.ResultStyle FLAT
-
TABLE
public static final ResultRequest.ResultStyle TABLE
-
-
Method Detail
-
values
public static ResultRequest.ResultStyle[] 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
public static ResultRequest.ResultStyle 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
-
-