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