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