Package io.bindingz.api.model
Enum JsonSchemaSpec
- java.lang.Object
-
- java.lang.Enum<JsonSchemaSpec>
-
- io.bindingz.api.model.JsonSchemaSpec
-
- All Implemented Interfaces:
Serializable,Comparable<JsonSchemaSpec>
public enum JsonSchemaSpec extends Enum<JsonSchemaSpec>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAFT_04DRAFT_06DRAFT_07DRAFT_2019_09
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JsonSchemaSpecvalueOf(String name)Returns the enum constant of this type with the specified name.static JsonSchemaSpec[]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 JsonSchemaSpec DRAFT_04
-
DRAFT_06
public static final JsonSchemaSpec DRAFT_06
-
DRAFT_07
public static final JsonSchemaSpec DRAFT_07
-
DRAFT_2019_09
public static final JsonSchemaSpec DRAFT_2019_09
-
-
Method Detail
-
values
public static JsonSchemaSpec[] 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 (JsonSchemaSpec c : JsonSchemaSpec.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonSchemaSpec valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-