This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new e33d08e60 Javadoc
e33d08e60 is described below
commit e33d08e60bfa4408fb75440da8877ba953ad0727
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 14 15:14:43 2023 -0500
Javadoc
---
.../java/org/apache/juneau/dto/jsonschema/JsonType.java | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git
a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
index 00d9c1e8f..2e2f5e4ba 100644
---
a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
+++
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
@@ -28,28 +28,28 @@ package org.apache.juneau.dto.jsonschema;
*/
public enum JsonType {
- /** array */
+ /** JSON type {@code array}. */
ARRAY("array"),
- /** boolean */
+ /** JSON type {@code boolean}. */
BOOLEAN("boolean"),
- /** integer */
+ /** JSON type {@code integer}. */
INTEGER("integer"),
- /** null */
+ /** JSON type {@code null}. */
NULL("null"),
- /** number */
+ /** JSON type {@code number}. */
NUMBER("number"),
- /** object */
+ /** JSON type {@code object}. */
OBJECT("object"),
- /** string */
+ /** JSON type {@code string}. */
STRING("string"),
- /** any */
+ /** JSON type {@code any}. */
ANY("any");
private final String value; // The serialized format of the enum.