public enum DataFormatType extends java.lang.Enum<DataFormatType>
NoSql, 
EISDescriptor.setDataFormat(String)| Enum Constant and Description | 
|---|
| INDEXEDJCA IndexedRecords are used, objects data is decomposed into an array of field values. | 
| MAPPEDJCA MappedRecords are used, objects data is decomposed into a Map of key/value pairs. | 
| XMLXML data is used. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DataFormatType | valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null