public static enum Email.Status extends Enum<Email.Status>
| Modifier and Type | Method and Description |
|---|---|
short |
code() |
static Email.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Email.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Email.Status ACTIVE
public static final Email.Status INACTIVE
public static final Email.Status UNKOWN
public static Email.Status[] values()
for (Email.Status c : Email.Status.values()) System.out.println(c);
public static Email.Status 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 short code()
Copyright © 2019. All Rights Reserved.