public enum DerivedAlias extends Enum<DerivedAlias>
| Enum Constant and Description |
|---|
AGGREGATION_DISTINCT_DERIVED |
| Modifier and Type | Method and Description |
|---|---|
String |
getDerivedAlias(int derivedAliasCount)
Get alias of derived alias.
|
static boolean |
isDerivedAlias(String aliasName)
Judge is derived alias or not.
|
static DerivedAlias |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DerivedAlias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DerivedAlias AGGREGATION_DISTINCT_DERIVED
public static DerivedAlias[] values()
for (DerivedAlias c : DerivedAlias.values()) System.out.println(c);
public static DerivedAlias 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 String getDerivedAlias(int derivedAliasCount)
derivedAliasCount - derived alias countpublic static boolean isDerivedAlias(String aliasName)
aliasName - alias name to be judgedCopyright © 2019 The Apache Software Foundation. All rights reserved.