|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<AnalyzeStm.Kind> dk.brics.xact.analysis.flowgraph.statements.AnalyzeStm.Kind
public static enum AnalyzeStm.Kind
Enum Constant Summary | |
---|---|
ANALYZECALL
Call to XML.analyze(String) . |
|
HOTSPOT
A hotspot added manually using Configuration.getHotspots() . |
|
TYPEANNOTATION
Assignment to some type annotation. |
Method Summary | |
---|---|
static AnalyzeStm.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AnalyzeStm.Kind[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AnalyzeStm.Kind ANALYZECALL
XML.analyze(String)
.
public static final AnalyzeStm.Kind HOTSPOT
Configuration.getHotspots()
.
These should not be checked by the XML analysis, but the XML graph must be available.
public static final AnalyzeStm.Kind TYPEANNOTATION
Method Detail |
---|
public static AnalyzeStm.Kind valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static AnalyzeStm.Kind[] values()
for (AnalyzeStm.Kind c : AnalyzeStm.Kind.values()) System.out.println(c);
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |