|
1 | 1 | /*******************************************************************************
|
2 |
| - * Copyright (c) 2013, 2016 EclipseSource. |
| 2 | + * Copyright (c) 2013, 2017 EclipseSource. |
3 | 3 | *
|
4 | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy
|
5 | 5 | * of this software and associated documentation files (the "Software"), to deal
|
|
34 | 34 | * <strong>true</strong>, <strong>false</strong>, and <strong>null</strong>.
|
35 | 35 | * <p>
|
36 | 36 | * The literals <strong>true</strong>, <strong>false</strong>, and <strong>null</strong> are
|
37 |
| - * represented by the constants {@link #TRUE}, {@link #FALSE}, and {@link #NULL}. |
| 37 | + * represented by the constants {@link Json#TRUE}, {@link Json#FALSE}, and {@link Json#NULL}. |
38 | 38 | * </p>
|
39 | 39 | * <p>
|
40 | 40 | * JSON <strong>objects</strong> and <strong>arrays</strong> are represented by the subtypes
|
|
44 | 44 | * <p>
|
45 | 45 | * Instances that represent JSON <strong>numbers</strong>, <strong>strings</strong> and
|
46 | 46 | * <strong>boolean</strong> values can be created using the static factory methods
|
47 |
| - * {@link #valueOf(String)}, {@link #valueOf(long)}, {@link #valueOf(double)}, etc. |
| 47 | + * {@link Json#value(String)}, {@link Json#value(long)}, {@link Json#value(double)}, etc. |
48 | 48 | * </p>
|
49 | 49 | * <p>
|
50 | 50 | * In order to find out whether an instance of this class is of a certain type, the methods
|
@@ -439,7 +439,7 @@ public void writeTo(Writer writer, WriterConfig config) throws IOException {
|
439 | 439 |
|
440 | 440 | /**
|
441 | 441 | * Returns the JSON string for this value in its minimal form, without any additional whitespace.
|
442 |
| - * The result is guaranteed to be a valid input for the method {@link #readFrom(String)} and to |
| 442 | + * The result is guaranteed to be a valid input for the method {@link Json#parse(String)} and to |
443 | 443 | * create a value that is <em>equal</em> to this object.
|
444 | 444 | *
|
445 | 445 | * @return a JSON string that represents this value
|
|
0 commit comments