Package com.kjetland.jackson.jsonSchema
Enum JsonSchemaDraft
- java.lang.Object
-
- java.lang.Enum<JsonSchemaDraft>
-
- com.kjetland.jackson.jsonSchema.JsonSchemaDraft
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JsonSchemaDraft>
public enum JsonSchemaDraft extends java.lang.Enum<JsonSchemaDraft>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAFT_04DRAFT_06DRAFT_07DRAFT_2019_09DRAFT_2020_12
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JsonSchemaDraftvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JsonSchemaDraft[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT_04
public static final JsonSchemaDraft DRAFT_04
-
DRAFT_06
public static final JsonSchemaDraft DRAFT_06
-
DRAFT_07
public static final JsonSchemaDraft DRAFT_07
-
DRAFT_2019_09
public static final JsonSchemaDraft DRAFT_2019_09
-
DRAFT_2020_12
public static final JsonSchemaDraft DRAFT_2020_12
-
-
Method Detail
-
values
public static JsonSchemaDraft[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JsonSchemaDraft c : JsonSchemaDraft.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonSchemaDraft valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-