public enum DataFormatType extends Enum<DataFormatType>
NoSql
,
EISDescriptor.setDataFormat(String)
Enum Constant and Description |
---|
INDEXED
JCA IndexedRecords are used, objects data is decomposed into an array of field values.
|
MAPPED
JCA MappedRecords are used, objects data is decomposed into a Map of key/value pairs.
|
XML
XML data is used.
|
Modifier and Type | Method and Description |
---|---|
static DataFormatType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataFormatType XML
public static final DataFormatType INDEXED
public static final DataFormatType MAPPED
public static DataFormatType[] values()
for (DataFormatType c : DataFormatType.values()) System.out.println(c);
public static DataFormatType 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 nullCopyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.