@FluentSetter - peichhorn/lombok-pg GitHub Wiki
@FluentSetter
Overview
(Documentation pending)
Example
With Lombok
import lombok.FluentSetter;
public class FluentSetterExample<T> {
@FluentSetter
private T value;
}
Vanilla Java
public class FluentSetterExample<T> {
private T value;
public FluentSetterExample<T> s(final T value) {
this.value = value;
return this;
}
}
Behind the Scenes
(Documentation pending)
Configuration
Nothing to configure yet.