public enum ApiVendor extends Enum<ApiVendor>
| Enum Constant and Description |
|---|
OAS |
OAS_20 |
OAS_30 |
RAML |
RAML_08 |
RAML_10 |
| Modifier and Type | Method and Description |
|---|---|
static ApiVendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiVendor RAML
public static final ApiVendor RAML_08
public static final ApiVendor RAML_10
public static final ApiVendor OAS
public static final ApiVendor OAS_20
public static final ApiVendor OAS_30
public static ApiVendor[] values()
for (ApiVendor c : ApiVendor.values()) System.out.println(c);
public static ApiVendor valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.