public enum Columns extends Enum<Columns>
Enum Constant and Description |
---|
DIMENSIONS |
METRICS |
Modifier and Type | Method and Description |
---|---|
static Columns |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Columns[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Columns DIMENSIONS
public static final Columns METRICS
public static Columns[] values()
for (Columns c : Columns.values()) System.out.println(c);
public static Columns 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 nullCopyright © 2016–2018 Yahoo! Inc.. All rights reserved.