public static enum Scan.ColumnarSupportMode extends Enum<Scan.ColumnarSupportMode>
| Enum Constant and Description | 
|---|
| PARTITION_DEFINED | 
| SUPPORTED | 
| UNSUPPORTED | 
| Modifier and Type | Method and Description | 
|---|---|
| static Scan.ColumnarSupportMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Scan.ColumnarSupportMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Scan.ColumnarSupportMode PARTITION_DEFINED
public static final Scan.ColumnarSupportMode SUPPORTED
public static final Scan.ColumnarSupportMode UNSUPPORTED
public static Scan.ColumnarSupportMode[] values()
for (Scan.ColumnarSupportMode c : Scan.ColumnarSupportMode.values()) System.out.println(c);
public static Scan.ColumnarSupportMode 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 null