mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 02:25:27 +00:00
15 lines
523 B
Java
15 lines
523 B
Java
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.collect.ImmutableCollection;
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.google.common.collect.ImmutableSortedSet;
|
|
|
|
import lombok.Singular;
|
|
|
|
@lombok.Builder
|
|
class BuilderSingularGuavaListsSets<T> {
|
|
@Singular private ImmutableList<T> cards;
|
|
@Singular private ImmutableCollection<? extends Number> frogs;
|
|
@SuppressWarnings("all") @Singular("rawSet") private ImmutableSet rawSet;
|
|
@Singular private ImmutableSortedSet<String> passes;
|
|
}
|