public enum TransformationOption extends java.lang.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(java.lang.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(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${project.version} - Copyright © 2003-2015 The Apache Software Foundation.