public enum MailChimpResult extends Enum<MailChimpResult>
Enum Constant and Description |
---|
ERROR |
NO_CHANGE |
REMOVED |
SUCCESS |
UPDATED |
Modifier and Type | Method and Description |
---|---|
static MailChimpResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailChimpResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailChimpResult UPDATED
public static final MailChimpResult REMOVED
public static final MailChimpResult ERROR
public static final MailChimpResult SUCCESS
public static final MailChimpResult NO_CHANGE
public static MailChimpResult[] values()
for (MailChimpResult c : MailChimpResult.values()) System.out.println(c);
public static MailChimpResult 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 © 2014–2022 Apache Software Foundation. All rights reserved.