public enum TransformationOption extends Enum<TransformationOption>
PlasticManager.PlasticManagerBuilder.enable(TransformationOption)
.Enum Constant and Description |
---|
FIELD_WRITEBEHIND
When enabled, fields that have a
FieldConduit will write the value sent to, or returned by, the conduit. |
Modifier and Type | Method and Description |
---|---|
static TransformationOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformationOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationOption FIELD_WRITEBEHIND
FieldConduit
will write the value sent to, or returned by, the conduit.
This is essential for debugging of the transformed class.PlasticField.setConduit(FieldConduit)
public static TransformationOption[] values()
for (TransformationOption c : TransformationOption.values()) System.out.println(c);
public static TransformationOption 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 null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.