public static enum OutputScan.Inherit extends java.lang.Enum<OutputScan.Inherit>
Enum Constant and Description |
---|
NO
No.
|
ONLY_CHILD_TASKS
Only child tasks.
|
YES
Yes.
|
Modifier and Type | Method and Description |
---|---|
static OutputScan.Inherit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputScan.Inherit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputScan.Inherit YES
public static final OutputScan.Inherit NO
public static final OutputScan.Inherit ONLY_CHILD_TASKS
public static OutputScan.Inherit[] values()
for (OutputScan.Inherit c : OutputScan.Inherit.values()) System.out.println(c);
public static OutputScan.Inherit 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