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