You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: driver/src/main/java/org/neo4j/driver/types/MapAccessorWithDefaultValue.java
+6-8Lines changed: 6 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -20,19 +20,17 @@
20
20
21
21
importjava.util.List;
22
22
importjava.util.Map;
23
+
importjava.util.function.Function;
23
24
24
25
importorg.neo4j.driver.Value;
25
-
importjava.util.function.Function;
26
26
27
27
/**
28
-
* Provides methods to access the value of an underlying unordered map by key.
29
-
* When calling the methods, a user need to provides a default value, which will be given back if no match found by
30
-
* the key provided.
31
-
* The default value also servers the purpose of specifying the return type of the value found in map by key.
32
-
* If the type of the value found A differs from the type of the default value B, a cast from A to B would happen
33
-
* automatically. Note: Error might arise if the cast from A to B is not possible.
28
+
* Provides methods to access the value of an underlying unordered map by key. When calling the methods, a user need to provides a default value, which will be
29
+
* given back if no match found by the key provided. The default value also servers the purpose of specifying the return type of the value found in map by key.
30
+
* If the type of the value found A differs from the type of the default value B, a cast from A to B would happen automatically. Note: Error might arise if the
0 commit comments