Package in.zapr.druid.druidry.query.scan
Enum ResultFormat
- java.lang.Object
-
- java.lang.Enum<ResultFormat>
-
- in.zapr.druid.druidry.query.scan.ResultFormat
-
- All Implemented Interfaces:
Serializable,Comparable<ResultFormat>
public enum ResultFormat extends Enum<ResultFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACTED_LISTLISTVALUE_VECTOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetResultFormat()static ResultFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static ResultFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIST
public static final ResultFormat LIST
-
COMPACTED_LIST
public static final ResultFormat COMPACTED_LIST
-
VALUE_VECTOR
public static final ResultFormat VALUE_VECTOR
-
-
Method Detail
-
values
public static ResultFormat[] 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 (ResultFormat c : ResultFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultFormat 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
-
getResultFormat
public String getResultFormat()
-
-