File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
driver/src/main/java/org/neo4j/driver/v1 Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ public interface Value extends MapAccessor, MapAccessorWithDefaultValue
240240 /**
241241 * @param defaultValue return this value if the value is null.
242242 * @return the value as a Java String, if possible
243+ * @throws Uncoercible if value types are incompatible.
243244 */
244245 String asString ( String defaultValue );
245246
@@ -300,7 +301,6 @@ public interface Value extends MapAccessor, MapAccessorWithDefaultValue
300301 * @return the value as a Java double.
301302 * @throws LossyCoercion if it is not possible to convert the value without loosing precision.
302303 * @throws Uncoercible if value types are incompatible.
303-
304304 */
305305 double asDouble ( double defaultValue );
306306
@@ -319,7 +319,6 @@ public interface Value extends MapAccessor, MapAccessorWithDefaultValue
319319 * @return the value as a Java float.
320320 * @throws LossyCoercion if it is not possible to convert the value without loosing precision.
321321 * @throws Uncoercible if value types are incompatible.
322-
323322 */
324323 float asFloat ( float defaultValue );
325324
You can’t perform that action at this time.
0 commit comments