public enum ContactTypeEnum extends Enum<ContactTypeEnum>
Java class for ContactTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ContactTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="TelephoneNumber"/> <enumeration value="EmailAddress"/> <enumeration value="WebSiteAddress"/> <enumeration value="GenericContactType"/> </restriction> </simpleType>
Enum Constant and Description |
---|
EMAIL_ADDRESS |
GENERIC_CONTACT_TYPE |
TELEPHONE_NUMBER |
WEB_SITE_ADDRESS |
Modifier and Type | Method and Description |
---|---|
static ContactTypeEnum |
fromValue(String v) |
String |
value() |
static ContactTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactTypeEnum TELEPHONE_NUMBER
public static final ContactTypeEnum EMAIL_ADDRESS
public static final ContactTypeEnum WEB_SITE_ADDRESS
public static final ContactTypeEnum GENERIC_CONTACT_TYPE
public static ContactTypeEnum[] values()
for (ContactTypeEnum c : ContactTypeEnum.values()) System.out.println(c);
public static ContactTypeEnum 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 value()
public static ContactTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.