public enum OutputColumnType extends Enum<OutputColumnType>
| Enum Constant and Description |
|---|
column |
expression |
metric |
variable |
| Modifier and Type | Method and Description |
|---|---|
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–2019 ODPi. All rights reserved.