public enum HadoopJobType extends Enum<HadoopJobType>
| Modifier and Type | Class and Description |
|---|---|
static class |
HadoopJobType.AdminJobType
The Enum AdminJobType.
|
| Enum Constant and Description |
|---|
admin
The admin.
|
mapreduce
The mapreduce.
|
oozie
The oozie.
|
| Modifier and Type | Method and Description |
|---|---|
static HadoopJobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HadoopJobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HadoopJobType mapreduce
public static final HadoopJobType admin
public static final HadoopJobType oozie
public static HadoopJobType[] values()
for (HadoopJobType c : HadoopJobType.values()) System.out.println(c);
public static HadoopJobType 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 © 2026. All rights reserved.