-
Notifications
You must be signed in to change notification settings - Fork 614
/
unmodifiablePrimitivePrimitiveMap.stg
467 lines (378 loc) · 12.5 KB
/
unmodifiablePrimitivePrimitiveMap.stg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
import "copyright.stg"
import "primitiveEquals.stg"
import "primitiveHashCode.stg"
import "primitiveLiteral.stg"
hasTwoPrimitives() ::= "true"
skipBooleanKeys() ::= "true"
targetPath() ::= "org/eclipse/collections/impl/map/mutable/primitive"
fileName(primitive1, primitive2, sameTwoPrimitives) ::= "Unmodifiable<primitive1.name><primitive2.name>Map"
class(primitive1, primitive2, sameTwoPrimitives) ::= <<
<body(primitive1.type, primitive2.type, primitive1.name, primitive2.name)>
>>
body(type1, type2, name1, name2) ::= <<
<copyright()>
package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Serializable;
import org.eclipse.collections.api.<name2>Iterable;
<if(!sameTwoPrimitives)>import org.eclipse.collections.api.<name1>Iterable;<endif>
<if(!sameTwoPrimitives)>import org.eclipse.collections.api.Lazy<name2>Iterable;<endif>
import org.eclipse.collections.api.Lazy<name1>Iterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.Mutable<name2>Bag;
import org.eclipse.collections.api.block.function.primitive.<name2>Function;
import org.eclipse.collections.api.block.function.primitive.<name2>Function0;
import org.eclipse.collections.api.block.function.primitive.<name2>To<name2>Function;
import org.eclipse.collections.api.block.function.primitive.<name2>ToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.Object<name2>ToObjectFunction;
<if(!sameTwoPrimitives)>import org.eclipse.collections.api.block.function.primitive.<name1>To<name2>Function;<endif>
import org.eclipse.collections.api.block.predicate.primitive.<name2>Predicate;
import org.eclipse.collections.api.block.predicate.primitive.<name1><name2>Predicate;
<if(!sameTwoPrimitives)>import org.eclipse.collections.api.block.procedure.primitive.<name2>Procedure;<endif>
import org.eclipse.collections.api.block.procedure.primitive.<name1><name2>Procedure;
import org.eclipse.collections.api.block.procedure.primitive.<name1>Procedure;
import org.eclipse.collections.api.collection.primitive.Mutable<name2>Collection;
import org.eclipse.collections.api.iterator.Mutable<name2>Iterator;
import org.eclipse.collections.api.list.primitive.Mutable<name2>List;
import org.eclipse.collections.api.map.primitive.Immutable<name1><name2>Map;
import org.eclipse.collections.api.map.primitive.<name1><name2>Map;
import org.eclipse.collections.api.map.primitive.Mutable<name1><name2>Map;
<if(!sameTwoPrimitives)>import org.eclipse.collections.api.set.primitive.Mutable<name1>Set;<endif>
import org.eclipse.collections.api.set.primitive.Mutable<name2>Set;
import org.eclipse.collections.api.tuple.primitive.<name1><name2>Pair;
import org.eclipse.collections.impl.collection.mutable.primitive.Unmodifiable<name2>Collection;
import org.eclipse.collections.impl.factory.primitive.<name1><name2>Maps;
import org.eclipse.collections.impl.iterator.Unmodifiable<name2>Iterator;
import org.eclipse.collections.impl.set.mutable.primitive.Unmodifiable<name1>Set;
/**
* This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
*
* @since 3.1.
*/
public final class Unmodifiable<name1><name2>Map
implements Mutable<name1><name2>Map, Serializable
{
private static final long serialVersionUID = 1L;
private final Mutable<name1><name2>Map map;
Unmodifiable<name1><name2>Map(Mutable<name1><name2>Map map)
{
this.map = map;
}
public void clear()
{
throw new UnsupportedOperationException("Cannot call clear() on " + this.getClass().getSimpleName());
}
public void put(<type1> key, <type2> value)
{
throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName());
}
public void putAll(<name1><name2>Map map)
{
throw new UnsupportedOperationException("Cannot call putAll() on " + this.getClass().getSimpleName());
}
public void removeKey(<type1> key)
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
public void remove(<type1> key)
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
public <type2> removeKeyIfAbsent(<type1> key, <type2> value)
{
if (this.map.containsKey(key))
{
throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName());
}
return value;
}
public <type2> getIfAbsentPut(<type1> key, <type2> value)
{
return this.map.getIfAbsentPut(key, () -> {throw new UnsupportedOperationException();});
}
public <type2> getIfAbsentPut(<type1> key, <name2>Function0 function)
{
return this.map.getIfAbsentPut(key, () -> {throw new UnsupportedOperationException();});
}
public <type2> getIfAbsentPutWithKey(<type1> key, <name1>To<name2>Function function)
{
return this.map.getIfAbsentPut(key, () -> {throw new UnsupportedOperationException();});
}
public \<P> <type2> getIfAbsentPutWith(<type1> key, <name2>Function\<? super P> function, P parameter)
{
return this.map.getIfAbsentPut(key, () -> {throw new UnsupportedOperationException();});
}
public <type2> updateValue(<type1> key, <type2> initialValueIfAbsent, <name2>To<name2>Function function)
{
throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName());
}
public <type2> get(<type1> key)
{
return this.map.get(key);
}
public <type2> getIfAbsent(<type1> key, <type2> ifAbsent)
{
return this.map.getIfAbsent(key, ifAbsent);
}
public <type2> getOrThrow(<type1> key)
{
return this.map.getOrThrow(key);
}
public boolean containsKey(<type1> key)
{
return this.map.containsKey(key);
}
public boolean containsValue(<type2> value)
{
return this.map.containsValue(value);
}
public void forEachValue(<name2>Procedure procedure)
{
this.map.forEachValue(procedure);
}
public void forEachKey(<name1>Procedure procedure)
{
this.map.forEachKey(procedure);
}
public void forEachKeyValue(<name1><name2>Procedure procedure)
{
this.map.forEachKeyValue(procedure);
}
public Lazy<name1>Iterable keysView()
{
return this.map.keysView();
}
public RichIterable\<<name1><name2>Pair> keyValuesView()
{
return this.map.keyValuesView();
}
public Mutable<name1><name2>Map select(<name1><name2>Predicate predicate)
{
return this.map.select(predicate);
}
public Mutable<name1><name2>Map reject(<name1><name2>Predicate predicate)
{
return this.map.reject(predicate);
}
public Mutable<name2>Iterator <type2>Iterator()
{
return new Unmodifiable<name2>Iterator(this.map.<type2>Iterator());
}
public void forEach(<name2>Procedure procedure)
{
this.each(procedure);
}
/**
* @since 7.0.
*/
public void each(<name2>Procedure procedure)
{
this.map.forEach(procedure);
}
public int count(<name2>Predicate predicate)
{
return this.map.count(predicate);
}
public boolean anySatisfy(<name2>Predicate predicate)
{
return this.map.anySatisfy(predicate);
}
public boolean allSatisfy(<name2>Predicate predicate)
{
return this.map.allSatisfy(predicate);
}
public boolean noneSatisfy(<name2>Predicate predicate)
{
return this.map.noneSatisfy(predicate);
}
public Mutable<name2>Bag select(<name2>Predicate predicate)
{
return this.map.select(predicate);
}
public Mutable<name2>Bag reject(<name2>Predicate predicate)
{
return this.map.reject(predicate);
}
public \<V> MutableBag\<V> collect(<name2>ToObjectFunction\<? extends V> function)
{
return this.map.collect(function);
}
public <type2> detectIfNone(<name2>Predicate predicate, <type2> ifNone)
{
return this.map.detectIfNone(predicate, ifNone);
}
<(arithmeticMethods.(type2))(name2, type2)>
public <type2>[] toArray()
{
return this.map.toArray();
}
public boolean contains(<type2> value)
{
return this.map.contains(value);
}
public boolean containsAll(<type2>... source)
{
return this.map.containsAll(source);
}
public boolean containsAll(<name2>Iterable source)
{
return this.map.containsAll(source);
}
public Mutable<name2>List toList()
{
return this.map.toList();
}
public Mutable<name2>Set toSet()
{
return this.map.toSet();
}
public Mutable<name2>Bag toBag()
{
return this.map.toBag();
}
public Lazy<name2>Iterable asLazy()
{
return this.map.asLazy();
}
public Mutable<name1><name2>Map withKeyValue(<type1> key, <type2> value)
{
throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName());
}
public Mutable<name1><name2>Map withoutKey(<type1> key)
{
throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName());
}
public Mutable<name1><name2>Map withoutAllKeys(<name1>Iterable keys)
{
throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName());
}
public Mutable<name1><name2>Map asUnmodifiable()
{
return this;
}
public Mutable<name1><name2>Map asSynchronized()
{
return new Synchronized<name1><name2>Map(this);
}
public Immutable<name1><name2>Map toImmutable()
{
return <name1><name2>Maps.immutable.withAll(this);
}
public int size()
{
return this.map.size();
}
public boolean isEmpty()
{
return this.map.isEmpty();
}
public boolean notEmpty()
{
return this.map.notEmpty();
}
public Mutable<name1>Set keySet()
{
return Unmodifiable<name1>Set.of(this.map.keySet());
}
public Mutable<name2>Collection values()
{
return Unmodifiable<name2>Collection.of(this.map.values());
}
@Override
public boolean equals(Object otherMap)
{
return this.map.equals(otherMap);
}
@Override
public int hashCode()
{
return this.map.hashCode();
}
@Override
public String toString()
{
return this.map.toString();
}
public String makeString()
{
return this.map.makeString();
}
public String makeString(String separator)
{
return this.map.makeString(separator);
}
public String makeString(String start, String separator, String end)
{
return this.map.makeString(start, separator, end);
}
public void appendString(Appendable appendable)
{
this.map.appendString(appendable);
}
public void appendString(Appendable appendable, String separator)
{
this.map.appendString(appendable, separator);
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
this.map.appendString(appendable, start, separator, end);
}
public \<T> T injectInto(T injectedValue, Object<name2>ToObjectFunction\<? super T, ? extends T> function)
{
return this.map.injectInto(injectedValue, function);
}
}
>>
arithmeticMethods ::= [
"byte": "allMethods",
"short": "allMethods",
"char": "allMethods",
"int": "allMethods",
"long": "allMethods",
"float": "allMethods",
"double": "allMethods",
"boolean": "noMethods"
]
allMethods(name, type) ::=<<
public <wideType.(type2)> sum()
{
return this.map.sum();
}
public <type2> max()
{
return this.map.max();
}
public <type2> maxIfEmpty(<type2> defaultValue)
{
return this.map.maxIfEmpty(defaultValue);
}
public <type2> min()
{
return this.map.min();
}
public <type2> minIfEmpty(<type2> defaultValue)
{
return this.map.minIfEmpty(defaultValue);
}
public double average()
{
return this.map.average();
}
public double median()
{
return this.map.median();
}
public <type2> addToValue(<type1> key, <type2> toBeAdded)
{
throw new UnsupportedOperationException("Cannot call addToValue() on " + this.getClass().getSimpleName());
}
public <type2>[] toSortedArray()
{
return this.map.toSortedArray();
}
public Mutable<name2>List toSortedList()
{
return this.map.toSortedList();
}
>>
noMethods(name, type) ::= ""