public enum Column extends Enum<Column> implements Function<Object,Object>
Map, a
 Map.Entry, or a Path.| Enum Constant and Description | 
|---|
| keysThe keys associated with the data structure. | 
| valuesThe values associated with the data structure. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Column | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Column[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Column keys
public static final Column values
public static Column[] values()
for (Column c : Column.values()) System.out.println(c);
public static Column 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 © 2013–2020 Apache Software Foundation. All rights reserved.