public static enum Hint.Options extends Enum<Hint.Options>
| Enum Constant and Description |
|---|
HEAVY
The hint requires heavyweight processing so it should be run explicitly only by Inspect, Refactor (or similar)
features
|
NO_BATCH
The hint cannot be run inside the Inspect&Refactor dialog.
|
QUERY
The hint does not produce any automatic transformations that could be run
inside the Inspect&Refactor dialog.
|
| Modifier and Type | Method and Description |
|---|---|
static Hint.Options |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Hint.Options[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Hint.Options QUERY
public static final Hint.Options NO_BATCH
public static final Hint.Options HEAVY
public static Hint.Options[] values()
for (Hint.Options c : Hint.Options.values()) System.out.println(c);
public static Hint.Options 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 nullBuilt on May 24 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.