public enum ContactRoleEnum extends Enum<ContactRoleEnum>
Java class for contactRoleEnum.
The following schema fragment specifies the expected content contained within this class.
Enum Constant and Description |
---|
CONTRACTOR |
EXHIBITOR |
GUIDE |
MEMBER |
PARTNER |
PRODUCER |
PUBLIC |
RELAY |
SUPPLIER |
SUPPORT |
Modifier and Type | Method and Description |
---|---|
static ContactRoleEnum |
fromValue(String v) |
String |
value() |
static ContactRoleEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactRoleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactRoleEnum MEMBER
public static final ContactRoleEnum PARTNER
public static final ContactRoleEnum PRODUCER
public static final ContactRoleEnum PUBLIC
public static final ContactRoleEnum RELAY
public static final ContactRoleEnum SUPPLIER
public static final ContactRoleEnum GUIDE
public static final ContactRoleEnum CONTRACTOR
public static final ContactRoleEnum SUPPORT
public static final ContactRoleEnum EXHIBITOR
public static ContactRoleEnum[] values()
for (ContactRoleEnum c : ContactRoleEnum.values()) System.out.println(c);
public static ContactRoleEnum 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 ContactRoleEnum fromValue(String v)
Copyright © 2021. All rights reserved.