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