My favorites | Sign in
Project Home Downloads Wiki Source
Checkout   Browse   Changes    
 
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
/* ============================================================
* This code is part of the "apex-lang" open source project avaiable at:
*
* http://code.google.com/p/apex-lang/
*
* This code is licensed under the Apache License, Version 2.0. You may obtain a
* copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
* ============================================================
*/
global class MapUtils {

global static List<String> joinMap(Map<String,String> theMap, String keyValueSeparator){
return joinx(theMap, keyValueSeparator);
}

global static List<String> joinx(Map<String,String> theMap, String keyValueSeparator){
List<String> returnValue = null;
if(theMap != null){
returnValue = new List<String>();
if(theMap.size() > 0){
final List<String> keys = new List<String>();
keys.addAll(theMap.keySet());
keys.sort();
for(String key : keys){
returnValue.add(key + keyValueSeparator + theMap.get(key));
}
}
}
return returnValue;
}

global static String joinMap(Map<String,String> theMap, String keyValueSeparator, String recordSeparator){
return joinx(theMap, keyValueSeparator, recordSeparator);
}

global static String joinx(Map<String,String> theMap, String keyValueSeparator, String recordSeparator){
String returnValue = null;
if(theMap != null){
returnValue = '';
if(theMap.size() > 0){
returnValue = StringUtils.joinArray(joinMap(theMap,keyValueSeparator), recordSeparator);
}
}
return returnValue;
}

global static String toString(Map<String,String> theMap){
return '<Map#([' + joinMap(theMap,'=',';') + '])>';
}

global static Boolean equals(Map<String,String> map1, Map<String,String> map2){
if(map1 == null && map2 == null){
return true;
}
if((map1 != null && map2 == null)
|| (map1 == null && map2 != null)
|| (map1.size() != map2.size())){
return false;
}
for(String key1 : map1.keySet()){
if(!map2.containsKey(key1)){
return false;
}
if(map1.get(key1) != map2.get(key1)){
return false;
}
}
return true;
}

global static void assertEquals(Map<String,String> expected, Map<String,String> actual){
System.assert(
equals(expected,actual)
,'Assertion failed, the following two maps are not equal. Expected: '
+ expected
+ ', Actual: '
+ actual);
}

global static Map<String,String> lowerCaseKeys(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(StringUtils.lowerCase(key),theMap.get(key));
}
}
}
return returnValue;
}

global static Map<String,String> upperCaseKeys(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(StringUtils.upperCase(key),theMap.get(key));
}
}
}
return returnValue;
}

global static Map<String,String> trimKeys(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(StringUtils.trim(key),theMap.get(key));
}
}
}
return returnValue;
}


global static Map<String,String> lowerCaseValues(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(key,StringUtils.lowerCase(theMap.get(key)));
}
}
}
return returnValue;
}

global static Map<String,String> upperCaseValues(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(key,StringUtils.upperCase(theMap.get(key)));
}
}
}
return returnValue;
}

global static Map<String,String> trimValues(Map<String,String> theMap){
final Map<String,String> returnValue = null;
if(theMap != null){
returnValue = new Map<String,String>();
if(theMap.size() > 0){
for(String key : theMap.keySet()){
returnValue.put(key,StringUtils.trim(theMap.get(key)));
}
}
}
return returnValue;
}

global static Map<String,String> index(
List<SObject> records
,String keyFieldName //must be a string field
,String valueFieldName //must be a string field
){
final Map<String,String> returnValue = null;
if(records != null){
returnValue = new Map<String,String>();
if(records.size() > 0){
Object key = null;
for(SObject record : records){
if(record != null){
key = record.get(keyFieldName);
if(key != null){
returnValue.put(
String.valueOf(key)
,String.valueOf(record.get(valueFieldName))
);
}
}
}
}
}
return returnValue;
}

/*
global static Map<Object,Object> indexObjectObject(
List<SObject> records
,String keyFieldName //must be a string field
,String valueFieldName //must be a string field
){
final Map<Object,Object> returnValue = null;
if(records != null){
returnValue = new Map<Object,Object>();
if(records.size() > 0){
Object key = null;
for(SObject record : records){
if(record != null){
key = record.get(keyFieldName);
if(key != null){
returnValue.put(
key
,record.get(valueFieldName)
);
}
}
}
}
}
return returnValue;
}
*/
}

Change log

r122 by Richard.Vanhook on May 9, 2011   Diff
Adding global variable and test object
Foo__c
Go to: 
Project members, sign in to write a code review

Older revisions

r117 by Richard.Vanhook on Apr 13, 2011   Diff
Updates
r49 by Richard.Vanhook on Sep 29, 2009   Diff
Changed tabs to four spaces
r29 by Richard.Vanhook on May 27, 2009   Diff
Updated sort methods on ArrayUtils
All revisions of this file

File info

Size: 7405 bytes, 214 lines
Powered by Google Project Hosting