Skip to content

Commit 8b54a3b

Browse files
author
Zhen Li
committed
Fix docs
1 parent de6e948 commit 8b54a3b

File tree

1 file changed

+1
-2
lines changed
  • driver/src/main/java/org/neo4j/driver/v1

1 file changed

+1
-2
lines changed

driver/src/main/java/org/neo4j/driver/v1/Value.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)