Enum used with Copy annotation on fields to indicate
special handling by the object copier. In what follows,
the source is the object being copied, and the result
is the resulting copy. field is the name of the annotated
field.
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Set result.field = source. Requires that the declared
type of field is assignment compatible with the type of
the object; that is, field.class.isAssignableFrom( this.class ).
Set result.field = result. Requires that the declared
type of field is assignment compatible with the type of
the object; that is, field.class.isAssignableFrom( this.class ).
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.