I'm trying to use Java Records instead of Lombok @Data
:
/**
* User data.
*
* @param id user ID.
* @param roles user roles.
*/
public record User(
UUID id,
Set<UserRoleGrantedAuthority> roles
) { /* ... */ }
But IntelliJ IDEA (2021.2.3) doesn't provide information about record fields in hover tooltips. Though it shows information about whole record class (with all its fields) when I move mouse cursor over the class name.
Am I doing something wrong, or the IDE still doesn't support it yet?