public enum MemberType extends Enum<MemberType>
Java class for memberType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="memberType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="oneOf"/>
<enumeration value="anyOf"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANY_OF
At least one of the members must be present.
|
ONE_OF
Members are mutually exclusive; exactly one must be present.
|
| Modifier and Type | Method and Description |
|---|---|
static MemberType |
fromValue(String v) |
String |
value() |
static MemberType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberType ONE_OF
public static final MemberType ANY_OF
public static MemberType[] values()
for (MemberType c : MemberType.values()) System.out.println(c);
public static MemberType 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 MemberType fromValue(String v)
Copyright © 2016–2020 FIX Trading Community. All rights reserved.