protected static enum Advice.StackMapFrameHandler.Default.Initialization extends Enum<Advice.StackMapFrameHandler.Default.Initialization>
Enum Constant and Description |
---|
INITIALIZED
Represents an initialized frame value.
|
UNITIALIZED
Represents an uninitialized frame value within a constructor before invoking the super constructor.
|
Modifier and Type | Method and Description |
---|---|
protected abstract Object |
toFrame(TypeDescription typeDescription)
Initializes a frame value to its frame type.
|
static Advice.StackMapFrameHandler.Default.Initialization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Advice.StackMapFrameHandler.Default.Initialization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Advice.StackMapFrameHandler.Default.Initialization UNITIALIZED
public static final Advice.StackMapFrameHandler.Default.Initialization INITIALIZED
public static Advice.StackMapFrameHandler.Default.Initialization[] values()
for (Advice.StackMapFrameHandler.Default.Initialization c : Advice.StackMapFrameHandler.Default.Initialization.values()) System.out.println(c);
public static Advice.StackMapFrameHandler.Default.Initialization 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 nullprotected abstract Object toFrame(TypeDescription typeDescription)
typeDescription
- The type being resolved.Copyright © 2014–2024. All rights reserved.