public static enum DocumentParser.VendorEx extends Enum<DocumentParser.VendorEx>
| Enum Constant and Description |
|---|
OAS20_JSON |
OAS20_YAML |
RAML |
| Modifier and Type | Method and Description |
|---|---|
static DocumentParser.VendorEx |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentParser.VendorEx[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentParser.VendorEx RAML
public static final DocumentParser.VendorEx OAS20_JSON
public static final DocumentParser.VendorEx OAS20_YAML
public static DocumentParser.VendorEx[] values()
for (DocumentParser.VendorEx c : DocumentParser.VendorEx.values()) System.out.println(c);
public static DocumentParser.VendorEx 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 © 2019. All rights reserved.