public static enum InstanceBuilder.BuildResponse extends Enum<InstanceBuilder.BuildResponse>
| Enum Constant and Description |
|---|
IGNORE
Don't do anything, allow to continue
|
THROW_ERROR
Throw an exception
|
WARN
Print out a warning, but otherwise allow to continue
|
| Modifier and Type | Method and Description |
|---|---|
static InstanceBuilder.BuildResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstanceBuilder.BuildResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstanceBuilder.BuildResponse IGNORE
public static final InstanceBuilder.BuildResponse WARN
public static final InstanceBuilder.BuildResponse THROW_ERROR
public static InstanceBuilder.BuildResponse[] values()
for (InstanceBuilder.BuildResponse c : InstanceBuilder.BuildResponse.values()) System.out.println(c);
public static InstanceBuilder.BuildResponse 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 © 2012 David Milne. All Rights Reserved.