public enum CopyType extends java.lang.Enum<CopyType>
| Enum Constant and Description |
|---|
IDENTITY
Set result.field = source.field without copying
|
NULL
Set result.field = null or 0 according to type.
|
RECURSE
Standard behavior: apply standard copier to the value
of the field.
|
RESULT
Set result.field = result.
|
SOURCE
Set result.field = source.
|
| Modifier and Type | Method and Description |
|---|---|
static CopyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CopyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyType RECURSE
public static final CopyType IDENTITY
public static final CopyType NULL
public static final CopyType SOURCE
public static final CopyType RESULT
public static CopyType[] values()
for (CopyType c : CopyType.values()) System.out.println(c);
public static CopyType 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