@Deprecated public static enum CompilerOptions.DisposalCheckingPolicy extends java.lang.Enum<CompilerOptions.DisposalCheckingPolicy>
Enum Constant and Description |
---|
AGGRESSIVE
Deprecated.
Aggressive disposal checking.
|
OFF
Deprecated.
Don't check any disposal.
|
ON
Deprecated.
Default/conservative disposal checking.
|
Modifier and Type | Method and Description |
---|---|
static CompilerOptions.DisposalCheckingPolicy |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CompilerOptions.DisposalCheckingPolicy[] |
values()
Deprecated.
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(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 nullCopyright © 2009-2018 Google. All Rights Reserved.