Enum StepFactory.HiveVersion
- java.lang.Object
-
- java.lang.Enum<StepFactory.HiveVersion>
-
- com.amazonaws.services.elasticmapreduce.util.StepFactory.HiveVersion
-
- All Implemented Interfaces:
Serializable
,Comparable<StepFactory.HiveVersion>
- Enclosing class:
- StepFactory
public static enum StepFactory.HiveVersion extends Enum<StepFactory.HiveVersion>
The available Hive versions. These are only available on Hadoop 0.20 Hive_0_5 Hive 0.5 Hive_0_7 Hive 0.7 Hive_0_7_1 Hive 0.7.1
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Hive_0_11_0
Hive_0_5
Hive_0_7
Hive_0_7_1
Hive_0_8_1
Hive_0_8_1_1
Hive_0_8_1_2
Hive_0_8_1_3
Hive_0_8_1_4
Hive_0_8_1_5
Hive_0_8_1_6
Hive_0_8_1_7
Hive_0_8_1_8
Hive_Latest
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static StepFactory.HiveVersion
valueOf(String name)
Returns the enum constant of this type with the specified name.static StepFactory.HiveVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Hive_0_5
public static final StepFactory.HiveVersion Hive_0_5
-
Hive_0_7
public static final StepFactory.HiveVersion Hive_0_7
-
Hive_0_7_1
public static final StepFactory.HiveVersion Hive_0_7_1
-
Hive_0_8_1
public static final StepFactory.HiveVersion Hive_0_8_1
-
Hive_0_8_1_1
public static final StepFactory.HiveVersion Hive_0_8_1_1
-
Hive_0_8_1_2
public static final StepFactory.HiveVersion Hive_0_8_1_2
-
Hive_0_8_1_3
public static final StepFactory.HiveVersion Hive_0_8_1_3
-
Hive_0_8_1_4
public static final StepFactory.HiveVersion Hive_0_8_1_4
-
Hive_0_8_1_5
public static final StepFactory.HiveVersion Hive_0_8_1_5
-
Hive_0_8_1_6
public static final StepFactory.HiveVersion Hive_0_8_1_6
-
Hive_0_8_1_7
public static final StepFactory.HiveVersion Hive_0_8_1_7
-
Hive_0_8_1_8
public static final StepFactory.HiveVersion Hive_0_8_1_8
-
Hive_0_11_0
public static final StepFactory.HiveVersion Hive_0_11_0
-
Hive_Latest
public static final StepFactory.HiveVersion Hive_Latest
-
-
Method Detail
-
values
public static StepFactory.HiveVersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StepFactory.HiveVersion c : StepFactory.HiveVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepFactory.HiveVersion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<StepFactory.HiveVersion>
-
-