public static enum APIProvider.DocType extends java.lang.Enum<APIProvider.DocType>
Enum Constant and Description |
---|
API_BLUEPRINT_JSON |
OpenAPI_v3_JSON |
OpenAPI_v3_YAML |
RAML_YAML |
Swagger_20_JSON |
Swagger_20_YAML |
Modifier and Type | Method and Description |
---|---|
static APIProvider.DocType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIProvider.DocType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIProvider.DocType Swagger_20_JSON
public static final APIProvider.DocType Swagger_20_YAML
public static final APIProvider.DocType RAML_YAML
public static final APIProvider.DocType API_BLUEPRINT_JSON
public static final APIProvider.DocType OpenAPI_v3_YAML
public static final APIProvider.DocType OpenAPI_v3_JSON
public static APIProvider.DocType[] values()
for (APIProvider.DocType c : APIProvider.DocType.values()) System.out.println(c);
public static APIProvider.DocType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null