import java.util.Map; import java.util.SortedMap; class BuilderSingularMaps { private Map women; private SortedMap men; @SuppressWarnings("all") private Map rawMap; private Map stringMap; @SuppressWarnings("all") BuilderSingularMaps(Map women, SortedMap men, Map rawMap, Map stringMap) { this.women = women; this.men = men; this.rawMap = rawMap; this.stringMap = stringMap; } @SuppressWarnings("all") public static class BuilderSingularMapsBuilder { @SuppressWarnings("all") private java.util.ArrayList women$key; @SuppressWarnings("all") private java.util.ArrayList women$value; @SuppressWarnings("all") private java.util.ArrayList men$key; @SuppressWarnings("all") private java.util.ArrayList men$value; @SuppressWarnings("all") private java.util.ArrayList rawMap$key; @SuppressWarnings("all") private java.util.ArrayList rawMap$value; @SuppressWarnings("all") private java.util.ArrayList stringMap$key; @SuppressWarnings("all") private java.util.ArrayList stringMap$value; @SuppressWarnings("all") BuilderSingularMapsBuilder() { } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder woman(K womanKey, V womanValue) { if (this.women$key == null) { this.women$key = new java.util.ArrayList(); this.women$value = new java.util.ArrayList(); } this.women$key.add(womanKey); this.women$value.add(womanValue); return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder women(java.util.Map women) { if (women == null) { throw new NullPointerException("women cannot be null"); } if (this.women$key == null) { this.women$key = new java.util.ArrayList(); this.women$value = new java.util.ArrayList(); } for (java.util.Map.Entry $lombokEntry : women.entrySet()) { this.women$key.add($lombokEntry.getKey()); this.women$value.add($lombokEntry.getValue()); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder clearWomen() { if (this.women$key != null) { this.women$key.clear(); this.women$value.clear(); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder man(K manKey, Number manValue) { if (this.men$key == null) { this.men$key = new java.util.ArrayList(); this.men$value = new java.util.ArrayList(); } this.men$key.add(manKey); this.men$value.add(manValue); return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder men(java.util.Map men) { if (men == null) { throw new NullPointerException("men cannot be null"); } if (this.men$key == null) { this.men$key = new java.util.ArrayList(); this.men$value = new java.util.ArrayList(); } for (java.util.Map.Entry $lombokEntry : men.entrySet()) { this.men$key.add($lombokEntry.getKey()); this.men$value.add($lombokEntry.getValue()); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder clearMen() { if (this.men$key != null) { this.men$key.clear(); this.men$value.clear(); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder rawMap(Object rawMapKey, Object rawMapValue) { if (this.rawMap$key == null) { this.rawMap$key = new java.util.ArrayList(); this.rawMap$value = new java.util.ArrayList(); } this.rawMap$key.add(rawMapKey); this.rawMap$value.add(rawMapValue); return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder rawMap(java.util.Map rawMap) { if (rawMap == null) { throw new NullPointerException("rawMap cannot be null"); } if (this.rawMap$key == null) { this.rawMap$key = new java.util.ArrayList(); this.rawMap$value = new java.util.ArrayList(); } for (java.util.Map.Entry $lombokEntry : rawMap.entrySet()) { this.rawMap$key.add($lombokEntry.getKey()); this.rawMap$value.add($lombokEntry.getValue()); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder clearRawMap() { if (this.rawMap$key != null) { this.rawMap$key.clear(); this.rawMap$value.clear(); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder stringMap(String stringMapKey, V stringMapValue) { if (this.stringMap$key == null) { this.stringMap$key = new java.util.ArrayList(); this.stringMap$value = new java.util.ArrayList(); } this.stringMap$key.add(stringMapKey); this.stringMap$value.add(stringMapValue); return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder stringMap(java.util.Map stringMap) { if (stringMap == null) { throw new NullPointerException("stringMap cannot be null"); } if (this.stringMap$key == null) { this.stringMap$key = new java.util.ArrayList(); this.stringMap$value = new java.util.ArrayList(); } for (java.util.Map.Entry $lombokEntry : stringMap.entrySet()) { this.stringMap$key.add($lombokEntry.getKey()); this.stringMap$value.add($lombokEntry.getValue()); } return this; } @SuppressWarnings("all") public BuilderSingularMaps.BuilderSingularMapsBuilder clearStringMap() { if (this.stringMap$key != null) { this.stringMap$key.clear(); this.stringMap$value.clear(); } return this; } @SuppressWarnings("all") public BuilderSingularMaps build() { java.util.Map women; switch (this.women$key == null ? 0 : this.women$key.size()) { case 0: women = java.util.Collections.emptyMap(); break; case 1: women = java.util.Collections.singletonMap(this.women$key.get(0), this.women$value.get(0)); break; default: women = new java.util.LinkedHashMap(this.women$key.size() < 1073741824 ? 1 + this.women$key.size() + (this.women$key.size() - 3) / 3 : Integer.MAX_VALUE); for (int $i = 0; $i < this.women$key.size(); $i++) women.put(this.women$key.get($i), (V) this.women$value.get($i)); women = java.util.Collections.unmodifiableMap(women); } java.util.SortedMap men = new java.util.TreeMap(); if (this.men$key != null) for (int $i = 0; $i < (this.men$key == null ? 0 : this.men$key.size()); $i++) men.put(this.men$key.get($i), (Number) this.men$value.get($i)); men = java.util.Collections.unmodifiableSortedMap(men); java.util.Map rawMap; switch (this.rawMap$key == null ? 0 : this.rawMap$key.size()) { case 0: rawMap = java.util.Collections.emptyMap(); break; case 1: rawMap = java.util.Collections.singletonMap(this.rawMap$key.get(0), this.rawMap$value.get(0)); break; default: rawMap = new java.util.LinkedHashMap(this.rawMap$key.size() < 1073741824 ? 1 + this.rawMap$key.size() + (this.rawMap$key.size() - 3) / 3 : Integer.MAX_VALUE); for (int $i = 0; $i < this.rawMap$key.size(); $i++) rawMap.put(this.rawMap$key.get($i), (Object) this.rawMap$value.get($i)); rawMap = java.util.Collections.unmodifiableMap(rawMap); } java.util.Map stringMap; switch (this.stringMap$key == null ? 0 : this.stringMap$key.size()) { case 0: stringMap = java.util.Collections.emptyMap(); break; case 1: stringMap = java.util.Collections.singletonMap(this.stringMap$key.get(0), this.stringMap$value.get(0)); break; default: stringMap = new java.util.LinkedHashMap(this.stringMap$key.size() < 1073741824 ? 1 + this.stringMap$key.size() + (this.stringMap$key.size() - 3) / 3 : Integer.MAX_VALUE); for (int $i = 0; $i < this.stringMap$key.size(); $i++) stringMap.put(this.stringMap$key.get($i), (V) this.stringMap$value.get($i)); stringMap = java.util.Collections.unmodifiableMap(stringMap); } return new BuilderSingularMaps(women, men, rawMap, stringMap); } @Override @SuppressWarnings("all") public String toString() { return "BuilderSingularMaps.BuilderSingularMapsBuilder(women$key=" + this.women$key + ", women$value=" + this.women$value + ", men$key=" + this.men$key + ", men$value=" + this.men$value + ", rawMap$key=" + this.rawMap$key + ", rawMap$value=" + this.rawMap$value + ", stringMap$key=" + this.stringMap$key + ", stringMap$value=" + this.stringMap$value + ")"; } } @SuppressWarnings("all") public static BuilderSingularMaps.BuilderSingularMapsBuilder builder() { return new BuilderSingularMaps.BuilderSingularMapsBuilder(); } }