public static enum Name.ALLOW extends java.lang.Enum<Name.ALLOW>
| Modifier and Type | Method and Description |
|---|---|
static Name.ALLOW |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Name.ALLOW[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Name.ALLOW ALL
public static final Name.ALLOW ALIAS
public static final Name.ALLOW MX
public static Name.ALLOW[] values()
for (Name.ALLOW c : Name.ALLOW.values()) System.out.println(c);
public static Name.ALLOW valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null