public enum IllegalStateEventHandling extends Enum<IllegalStateEventHandling>
| Enum Constant and Description |
|---|
FixAndCreateEvent |
FixSilently |
Ignore |
Stop |
ThrowException |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFix() |
boolean |
isIgnore() |
boolean |
isStop() |
boolean |
isThrowException() |
static IllegalStateEventHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IllegalStateEventHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IllegalStateEventHandling Ignore
public static final IllegalStateEventHandling FixSilently
public static final IllegalStateEventHandling FixAndCreateEvent
public static final IllegalStateEventHandling Stop
public static final IllegalStateEventHandling ThrowException
public static IllegalStateEventHandling[] values()
for (IllegalStateEventHandling c : IllegalStateEventHandling.values()) System.out.println(c);
public static IllegalStateEventHandling 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 boolean isIgnore()
public boolean isFix()
public boolean isStop()
public boolean isThrowException()
Copyright © 2015. All Rights Reserved.