public static enum FrameInstance.FrameAccess extends Enum<FrameInstance.FrameAccess>
FrameInstance.getFrame(FrameAccess)
.FrameInstance.getFrame(FrameAccess)
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
MATERIALIZE
This mode allows to read a materialized version of the frame and provides read and write
access to its local variables.
|
READ_ONLY
This mode allows to read the frame and provides read only access to its local variables.
|
READ_WRITE
This mode allows to read the frame and provides read and write access to its local
variables.
|
Modifier and Type | Method and Description |
---|---|
static FrameInstance.FrameAccess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameInstance.FrameAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameInstance.FrameAccess READ_ONLY
AssertionError
only if assertions (-ea) are enabled.public static final FrameInstance.FrameAccess READ_WRITE
public static final FrameInstance.FrameAccess MATERIALIZE
FrameInstance.FrameAccess.READ_WRITE
this mode allows to
store/persist the returned frame.public static FrameInstance.FrameAccess[] values()
public static FrameInstance.FrameAccess 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 null