public static enum EscapeAnalysis.EscapeState extends java.lang.Enum<EscapeAnalysis.EscapeState>
| Modifier and Type | Method and Description |
|---|---|
static EscapeAnalysis.EscapeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EscapeAnalysis.EscapeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EscapeAnalysis.EscapeState TOP
public static final EscapeAnalysis.EscapeState NONE
public static final EscapeAnalysis.EscapeState METHOD
public static final EscapeAnalysis.EscapeState INTER
public static final EscapeAnalysis.EscapeState GLOBAL
public static EscapeAnalysis.EscapeState[] values()
for (EscapeAnalysis.EscapeState c : EscapeAnalysis.EscapeState.values()) System.out.println(c);
public static EscapeAnalysis.EscapeState 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 © 2020. All Rights Reserved.