public static enum OutputScan.Inherit extends 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(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(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 © 2021. All rights reserved.