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