public enum NoChildStrategy extends Enum<NoChildStrategy>
| Enum Constant and Description |
|---|
DontRun |
RerunEmpty |
RerunWhole |
| Modifier and Type | Method and Description |
|---|---|
static NoChildStrategy |
getDefault() |
String |
getDisplayName() |
static NoChildStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoChildStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoChildStrategy RerunWhole
public static final NoChildStrategy RerunEmpty
public static final NoChildStrategy DontRun
public static NoChildStrategy[] values()
for (NoChildStrategy c : NoChildStrategy.values()) System.out.println(c);
public static NoChildStrategy 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 getDisplayName()
@Nonnull public static NoChildStrategy getDefault()
Copyright © 2016–2019. All rights reserved.