public static enum CompilerOptions.DisposalCheckingPolicy extends Enum<CompilerOptions.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 CompilerOptions.DisposalCheckingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.DisposalCheckingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerOptions.DisposalCheckingPolicy OFF
public static final CompilerOptions.DisposalCheckingPolicy ON
public static final CompilerOptions.DisposalCheckingPolicy AGGRESSIVE
public static CompilerOptions.DisposalCheckingPolicy[] values()
for (CompilerOptions.DisposalCheckingPolicy c : CompilerOptions.DisposalCheckingPolicy.values()) System.out.println(c);
public static CompilerOptions.DisposalCheckingPolicy 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 © 2009-2017 Google. All Rights Reserved.