We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74bdc9d commit 78500adCopy full SHA for 78500ad
README.md
@@ -19,16 +19,18 @@ public static void main(String...args) {
19
20
System.out.print(key + " ");
21
22
+ System.out.println();
23
+
24
// Get wanted value using a key found in the KeySet
25
onlyMap.get("Volume");
26
27
// Some responses have more than 1 map - the List must be traversed in these cases.
28
String otherRawResponse = wrapper.getBalances();
29
List<HashMap<String, String>> allBalancesMapList = Bittrex.getMapsFromResponse(otherRawResponse);
30
- for(HashMap<String, String> map : responseMapList)
31
+ for(HashMap<String, String> map : allBalancesMapList)
32
- System.out.println("\n" + map);
33
+ System.out.println(map);
34
35
// And then the wanted map can be used
36
0 commit comments