public enum OutputColumnType extends Enum<OutputColumnType> implements IAEnum
| Enum Constant and Description |
|---|
COLUMN |
EXPRESSION |
METRIC |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static OutputColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputColumnType COLUMN
public static final OutputColumnType VARIABLE
public static final OutputColumnType EXPRESSION
public static final OutputColumnType METRIC
public static OutputColumnType[] values()
for (OutputColumnType c : OutputColumnType.values()) System.out.println(c);
public static OutputColumnType 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 © 2018–2020 ODPi. All rights reserved.