blob: 060d290366c6f85c08404374df8665c6ec317ed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 BuilderSingletonGuavaListsSets<T> {
@Singular private ImmutableList<T> cards;
@Singular private ImmutableCollection<? extends Number> frogs;
@Singular("rawSet") private ImmutableSet rawSet;
@Singular private ImmutableSortedSet<String> passes;
}
|