public enum ContactTypeType extends Enum<ContactTypeType>
Java class for ContactTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ContactTypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="technical"/> <enumeration value="support"/> <enumeration value="administrative"/> <enumeration value="billing"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ADMINISTRATIVE |
BILLING |
OTHER |
SUPPORT |
TECHNICAL |
Modifier and Type | Method and Description |
---|---|
static ContactTypeType |
fromValue(String v) |
String |
value() |
static ContactTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactTypeType TECHNICAL
public static final ContactTypeType SUPPORT
public static final ContactTypeType ADMINISTRATIVE
public static final ContactTypeType BILLING
public static final ContactTypeType OTHER
public static ContactTypeType[] values()
for (ContactTypeType c : ContactTypeType.values()) System.out.println(c);
public static ContactTypeType 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 ContactTypeType fromValue(String v)
Copyright © 2018 JBoss by Red Hat. All rights reserved.