public enum GroupingBucketType extends java.lang.Enum<GroupingBucketType>
| Enum Constant and Description |
|---|
DATE_GROUPING_BUCKET |
STRING_GROUPING_BUCKET |
| Modifier and Type | Method and Description |
|---|---|
static GroupingBucketType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static GroupingBucketType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupingBucketType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupingBucketType DATE_GROUPING_BUCKET
public static final GroupingBucketType STRING_GROUPING_BUCKET
public static GroupingBucketType[] values()
for (GroupingBucketType c : GroupingBucketType.values()) System.out.println(c);
public static GroupingBucketType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<GroupingBucketType>public static GroupingBucketType fromValue(java.lang.String text)