@Deprecated public enum MappingType extends Enum<MappingType>
Java class for MappingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MappingType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="All"/> <enumeration value="Collection"/> <enumeration value="Combine"/> <enumeration value="Lookup"/> <enumeration value="Map"/> <enumeration value="Separate"/> <enumeration value="None"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL
Deprecated.
|
COLLECTION
Deprecated.
|
COMBINE
Deprecated.
|
LOOKUP
Deprecated.
|
MAP
Deprecated.
|
NONE
Deprecated.
|
SEPARATE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static MappingType |
fromValue(String v)
Deprecated.
|
String |
value()
Deprecated.
|
static MappingType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static MappingType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingType ALL
public static final MappingType COLLECTION
public static final MappingType COMBINE
public static final MappingType LOOKUP
public static final MappingType MAP
public static final MappingType SEPARATE
public static final MappingType NONE
public static MappingType[] values()
for (MappingType c : MappingType.values()) System.out.println(c);
public static MappingType 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 MappingType fromValue(String v)
Copyright © 2018 JBoss by Red Hat. All rights reserved.