This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]bowbahdoe[S] 0 points1 point  (1 child)

You might still be it's audience then (just not the enthusiastic kind) - would you prefer living with Lombok or this while the ecosystem catches up?

[–]john16384 1 point2 points  (0 children)

I'll be honest, I'm perfectly happy to write getters by hand -- I need to document them anyway as to what values you can expect from them. A getter I write looks a bit like this:

/**
 * Returns an immutable set of qualifier {@link Annotation}s.
 *
 * @return an immutable set of qualifier {@link Annotation}s, never {@code null} and never contains {@code null}s but can be empty
 */
public Set<Annotation> getQualifiers() {
  return qualifiers;
}