See: Description
| Annotation Type | Description |
|---|---|
| Functional |
This annotation indicates that an interface is intended to be a functional interface as defined by the Java Language Specification.
|
| Immutable |
This annotation indicates that the objects of the annotated class are immutable.
|
| Mutable |
This annotation indicates that the objects of the annotated class are mutable.
|
| ReadOnly |
This annotation indicates that the objects of the annotated type cannot be modified through
their methods but can still change because they represent other objects in a read-only mode.
|
| Stateless |
This annotation indicates that the objects of the annotated class have no non-static fields.
|
| Utility |
This annotation indicates that the annotated class has only static fields and methods.
|
Copyright © 2017. All rights reserved.