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
240
240
/**
241
241
* @param defaultValue return this value if the value is null.
242
242
* @return the value as a Java String, if possible
243
+ * @throws Uncoercible if value types are incompatible.
243
244
*/
244
245
String asString ( String defaultValue );
245
246
@@ -300,7 +301,6 @@ public interface Value extends MapAccessor, MapAccessorWithDefaultValue
300
301
* @return the value as a Java double.
301
302
* @throws LossyCoercion if it is not possible to convert the value without loosing precision.
302
303
* @throws Uncoercible if value types are incompatible.
303
-
304
304
*/
305
305
double asDouble ( double defaultValue );
306
306
@@ -319,7 +319,6 @@ public interface Value extends MapAccessor, MapAccessorWithDefaultValue
319
319
* @return the value as a Java float.
320
320
* @throws LossyCoercion if it is not possible to convert the value without loosing precision.
321
321
* @throws Uncoercible if value types are incompatible.
322
-
323
322
*/
324
323
float asFloat ( float defaultValue );
325
324
You can’t perform that action at this time.
0 commit comments