private static enum RequireThisCheck.FrameType extends java.lang.Enum<RequireThisCheck.FrameType>
Enum Constant and Description |
---|
BLOCK_FRAME
Block frame type.
|
CLASS_FRAME
Class frame type.
|
CTOR_FRAME
Constructor frame type.
|
METHOD_FRAME
Method frame type.
|
Modifier and Type | Method and Description |
---|---|
static RequireThisCheck.FrameType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequireThisCheck.FrameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequireThisCheck.FrameType CLASS_FRAME
public static final RequireThisCheck.FrameType CTOR_FRAME
public static final RequireThisCheck.FrameType METHOD_FRAME
public static final RequireThisCheck.FrameType BLOCK_FRAME
public static RequireThisCheck.FrameType[] values()
for (RequireThisCheck.FrameType c : RequireThisCheck.FrameType.values()) System.out.println(c);
public static RequireThisCheck.FrameType 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 null