public enum OddjobInheritance extends java.lang.Enum<OddjobInheritance>
Enum Constant and Description |
---|
NONE
No values or properties are automatically inherited.
|
PROPERTIES
All properties are inherited.
|
SHARED
All properties and values are shared between the parent and child
Oddjobs.
|
Modifier and Type | Method and Description |
---|---|
static OddjobInheritance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OddjobInheritance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OddjobInheritance NONE
public static final OddjobInheritance PROPERTIES
public static final OddjobInheritance SHARED
public static OddjobInheritance[] values()
for (OddjobInheritance c : OddjobInheritance.values()) System.out.println(c);
public static OddjobInheritance valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null