public static enum ForkerUtils.ForkMethod extends Enum<ForkerUtils.ForkMethod>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ForkerUtils.ForkMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForkerUtils.ForkMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForkerUtils.ForkMethod NONE
public static final ForkerUtils.ForkMethod PWD
public static final ForkerUtils.ForkMethod KEY
public static ForkerUtils.ForkMethod[] values()
for (ForkerUtils.ForkMethod c : ForkerUtils.ForkMethod.values()) System.out.println(c);
public static ForkerUtils.ForkMethod 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 nullpublic String toString()
toString
in class Enum<ForkerUtils.ForkMethod>