public enum ColumnNaming extends Enum<ColumnNaming>
| Enum Constant and Description |
|---|
SIMPLIFIED |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
String |
getName(io.airlift.tpch.TpchColumn<? extends io.airlift.tpch.TpchEntity> tpchColumn) |
static ColumnNaming |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnNaming[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnNaming STANDARD
public static final ColumnNaming SIMPLIFIED
public static ColumnNaming[] values()
for (ColumnNaming c : ColumnNaming.values()) System.out.println(c);
public static ColumnNaming 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 getName(io.airlift.tpch.TpchColumn<? extends io.airlift.tpch.TpchEntity> tpchColumn)
Copyright © 2012–2023. All rights reserved.