jsegd-fluig-types 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/java/java.d.ts +22 -0
package/package.json
CHANGED
package/types/java/java.d.ts
CHANGED
|
@@ -59,17 +59,23 @@ declare global {
|
|
|
59
59
|
size(): number
|
|
60
60
|
isEmpty(): boolean
|
|
61
61
|
contains(o: T): boolean
|
|
62
|
+
containsAll(c: java.util.Collection<T>): boolean
|
|
62
63
|
equals(o: java.lang.Object): boolean
|
|
63
64
|
add(e: T): boolean
|
|
64
65
|
add(index: number, element: T): void
|
|
66
|
+
addAll(c: java.util.Collection<T>): boolean
|
|
65
67
|
get(index: number): T
|
|
66
68
|
set(index: number, element: T): T
|
|
67
69
|
remove(o: java.lang.Object): boolean
|
|
68
70
|
remove(index: number): T
|
|
71
|
+
removeAll(c: java.util.Collection<T>): boolean
|
|
72
|
+
retainAll(c: java.util.Collection<T>): boolean
|
|
69
73
|
indexOf(o: T): number
|
|
70
74
|
lastIndexOf(o: T): number
|
|
75
|
+
subList(fromIndex: number, toIndex: number): java.util.List<T>
|
|
71
76
|
clear(): void
|
|
72
77
|
iterator(): java.util.Iterator<T>
|
|
78
|
+
parallelStream(): java.util.stream.Stream<T>
|
|
73
79
|
stream(): java.util.stream.Stream<T>
|
|
74
80
|
toArray(): T[]
|
|
75
81
|
[Symbol.iterator](): IterableIterator<T>
|
|
@@ -111,10 +117,18 @@ declare global {
|
|
|
111
117
|
isEmpty(): boolean
|
|
112
118
|
containsKey(key: K): boolean
|
|
113
119
|
containsValue(value: V): boolean
|
|
120
|
+
getOrDefault(key: K, defaultValue: V): V
|
|
114
121
|
get(key: K): V | undefined
|
|
115
122
|
put(key: K, value: V): V | undefined
|
|
123
|
+
putAll(m: java.util.Map<K, V>): void
|
|
124
|
+
putIfAbsent(key: K, value: V): V | undefined
|
|
116
125
|
remove(key: K): V | undefined
|
|
126
|
+
remove(key: K, value: V): boolean
|
|
117
127
|
clear(): void
|
|
128
|
+
forEach(callback: (key: K, value: V) => void): void
|
|
129
|
+
replace(key: K, value: V): V | undefined
|
|
130
|
+
replace(key: K, oldValue: V, newValue: V): boolean
|
|
131
|
+
replaceAll(mappingFunction: (key: K, value: V) => V): void
|
|
118
132
|
keySet(): java.util.Set<K>
|
|
119
133
|
values(): java.util.Collection<V>
|
|
120
134
|
entrySet(): java.util.Set<java.util.Map.Entry<K, V>>
|
|
@@ -150,10 +164,18 @@ declare global {
|
|
|
150
164
|
isEmpty(): boolean
|
|
151
165
|
containsKey(key: K): boolean
|
|
152
166
|
containsValue(value: V): boolean
|
|
167
|
+
getOrDefault(key: K, defaultValue: V): V
|
|
153
168
|
get(key: K): V | undefined
|
|
154
169
|
put(key: K, value: V): V | undefined
|
|
170
|
+
putAll(m: java.util.Map<K, V>): void
|
|
171
|
+
putIfAbsent(key: K, value: V): V | undefined
|
|
155
172
|
remove(key: K): V | undefined
|
|
173
|
+
remove(key: K, value: V): boolean
|
|
156
174
|
clear(): void
|
|
175
|
+
forEach(callback: (key: K, value: V) => void): void
|
|
176
|
+
replace(key: K, value: V): V | undefined
|
|
177
|
+
replace(key: K, oldValue: V, newValue: V): boolean
|
|
178
|
+
replaceAll(mappingFunction: (key: K, value: V) => V): void
|
|
157
179
|
keySet(): java.util.Set<K>
|
|
158
180
|
values(): java.util.Collection<V>
|
|
159
181
|
entrySet(): java.util.Set<java.util.Map.Entry<K, V>>
|