public static enum CsvTable.Flavor extends Enum<CsvTable.Flavor>
| Enum Constant and Description |
|---|
FILTERABLE |
SCANNABLE |
TRANSLATABLE |
| Modifier and Type | Method and Description |
|---|---|
static CsvTable.Flavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvTable.Flavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvTable.Flavor SCANNABLE
public static final CsvTable.Flavor FILTERABLE
public static final CsvTable.Flavor TRANSLATABLE
public static CsvTable.Flavor[] values()
for (CsvTable.Flavor c : CsvTable.Flavor.values()) System.out.println(c);
public static CsvTable.Flavor 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 © 2012-2020 Apache Software Foundation. All Rights Reserved.