Annotation Type | Description |
---|---|
Cloneable |
This annotation can be applied to classes to indicate that they may be cloned.
|
Cloner |
This annotation can be applied to a method or constructor to indicate that it can be used to clone a particular type.
|
Flat |
This annotation is intended as a hint that the annotated class does not contain multiple references
to itself or any classes reachable from it.
|
Immutable |
This annotation is intended as a hint that the annotated class is immutable or effectively immutable.
|
NonCloneable |
This annotation is intended as a hint that the annotated class should not be cloned and
simply retained as is.
|
Transient |
Applied to a field, this annotation indicates that the field should be considered
to be transient when performing a clone.
|
Copyright © 2010–2018 Jadira Systems. All rights reserved.