import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableBiMap; import com.google.common.collect.ImmutableSortedMap; import lombok.Singular; @lombok.Builder class BuilderSingletonGuavaMaps { @Singular private ImmutableMap battleaxes; @Singular private ImmutableSortedMap vertices; @Singular("rawMap") private ImmutableBiMap rawMap; }