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