Annotation Type Unique
-
@Documented @Retention(RUNTIME) @Target({TYPE_USE,TYPE_PARAMETER}) @SubtypeOf(MaybeAliased.class) public @interface UniqueAn expression with this type has no aliases. In other words, no other expression, evaluated at the same program point, would evaluate to the exact same object value.A constructor's return type should be annotated with
@Uniqueif the constructor does not leak references to the constructed object. For example, theString()constructor return type is annotated as@Unique.- See Also:
MaybeAliased- See the Checker Framework Manual:
- Aliasing Checker