-
Notifications
You must be signed in to change notification settings - Fork 2
/
mxDictionary.d.ts
84 lines (75 loc) · 1.73 KB
/
mxDictionary.d.ts
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
/**
* Copyright (c) 2006-2015, JGraph Ltd
* Copyright (c) 2006-2015, Gaudenz Alder
*/
/**
* Class: mxDictionary
*
* A wrapper class for an associative array with object keys. Note: This
* implementation uses <mxObjectIdentitiy> to turn object keys into strings.
*
* Constructor: mxEventSource
*
* Constructs a new dictionary which allows object to be used as keys.
*/
declare namespace mxgraph {
export class mxDictionary<T> {
constructor();
/**
* Function: map
*
* Stores the (key, value) pairs in this dictionary.
*/
map: { [key: string]: T };
/**
* Function: clear
*
* Clears the dictionary.
*/
clear(): void;
/**
* Function: get
*
* Returns the value for the given key.
*/
get(key: string): T;
/**
* Function: put
*
* Stores the value under the given key and returns the previous
* value for that key.
*/
put(key: string, value: T): T;
/**
* Function: remove
*
* Removes the value for the given key and returns the value that
* has been removed.
*/
remove(key: string): T;
/**
* Function: getKeys
*
* Returns all keys as an array.
*/
getKeys(): string[];
/**
* Function: getValues
*
* Returns all values as an array.
*/
getValues(): T[];
/**
* Function: visit
*
* Visits all entries in the dictionary using the given function with the
* following signature: function(key, value) where key is a string and
* value is an object.
*
* Parameters:
*
* visitor - A function that takes the key and value as arguments.
*/
visit(visitor: (key: string, value: T) => void): void;
}
}