public static enum Contact.Type extends Enum<Contact.Type> implements Serializable
| Enum Constant and Description |
|---|
administrative |
billing |
other |
support |
technical |
| Modifier and Type | Method and Description |
|---|---|
static Contact.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Contact.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Contact.Type technical
public static final Contact.Type administrative
public static final Contact.Type support
public static final Contact.Type billing
public static final Contact.Type other
public static Contact.Type[] values()
for (Contact.Type c : Contact.Type.values()) System.out.println(c);
public static Contact.Type 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 © 2009-2013 SURFnet bv, The Netherlands. All Rights Reserved.