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