public enum AggregateType extends Enum<AggregateType>
| Modifier and Type | Method and Description |
|---|---|
byte |
code() |
boolean |
isIndexable() |
boolean |
isMax() |
boolean |
isMin() |
boolean |
isNone() |
boolean |
isNumber() |
boolean |
isOld() |
boolean |
isSum() |
String |
string() |
static AggregateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateType NONE
public static final AggregateType MAX
public static final AggregateType MIN
public static final AggregateType SUM
public static final AggregateType OLD
public static AggregateType[] values()
for (AggregateType c : AggregateType.values()) System.out.println(c);
public static AggregateType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte code()
public String string()
public boolean isNone()
public boolean isMax()
public boolean isMin()
public boolean isSum()
public boolean isNumber()
public boolean isOld()
public boolean isIndexable()
Copyright © 2023 The Apache Software Foundation. All rights reserved.