public static enum CheckEventfulObjectDisposal.DisposalCheckingPolicy extends java.lang.Enum<CheckEventfulObjectDisposal.DisposalCheckingPolicy>
| Enum Constant and Description |
|---|
AGGRESSIVE
Aggressive disposal checking.
|
OFF
Don't check any disposal.
|
ON
Default/conservative disposal checking.
|
| Modifier and Type | Method and Description |
|---|---|
static CheckEventfulObjectDisposal.DisposalCheckingPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckEventfulObjectDisposal.DisposalCheckingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckEventfulObjectDisposal.DisposalCheckingPolicy OFF
public static final CheckEventfulObjectDisposal.DisposalCheckingPolicy ON
public static final CheckEventfulObjectDisposal.DisposalCheckingPolicy AGGRESSIVE
public static CheckEventfulObjectDisposal.DisposalCheckingPolicy[] values()
for (CheckEventfulObjectDisposal.DisposalCheckingPolicy c : CheckEventfulObjectDisposal.DisposalCheckingPolicy.values()) System.out.println(c);
public static CheckEventfulObjectDisposal.DisposalCheckingPolicy 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