File tree 2 files changed +4
-4
lines changed
src/main/java/com/shimizukenta/jsonhub
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ Pojo pojo = JsonHub.fromBytes(strm).toPojo(Pojo.class);
118
118
119
119
``` java
120
120
/* to String */
121
- String prettyPrintJson = JsonHub . fromPoso (pojo). prettyPrint();
121
+ String prettyPrintJson = JsonHub . fromPojo (pojo). prettyPrint();
122
122
123
123
/* write to file */
124
124
Path path = Paths . get(" path/of/file.json" );
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ public interface JsonHub extends Iterable<JsonHub> {
361
361
public OptionalLong optionalLong ();
362
362
363
363
/**
364
- * Returns OptionalDouble, OptionalDobule has value if type is NUMBER, and {@code OptionalDouble.empty()} otherwise.
364
+ * Returns OptionalDouble, OptionalDouble has value if type is NUMBER, and {@code OptionalDouble.empty()} otherwise.
365
365
*
366
366
* @return OptionalDouble has value if type is NUMBER, and {@code OptionalDouble.empty()} otherwise
367
367
*/
@@ -482,14 +482,14 @@ public static JsonHub fromJson(Reader reader) throws IOException {
482
482
public void toJson (Writer writer ) throws IOException ;
483
483
484
484
/**
485
- * Returns parsed compact-JSON-String exclued null value pair in Object;
485
+ * Returns parsed compact-JSON-String exclude null value pair in Object;
486
486
*
487
487
* @return json of excluded null value pair in Object.
488
488
*/
489
489
public String toJsonExcludedNullValueInObject ();
490
490
491
491
/**
492
- * Returns parsed compact-JSON-String exclued null value pair in Object;
492
+ * Returns parsed compact-JSON-String exclude null value pair in Object;
493
493
*
494
494
* @param writer
495
495
* @throws IOException
You can’t perform that action at this time.
0 commit comments