@Immutable
From Documentation
Syntax
@Immutable
Description
Target: class
Purpose: Marker annotation to indicate an immutable class.
The properties of immutable class won't be tracked and reduce the cost of tracking.
Example
@Immutable
public class SysConfiguration{
}