public enum SerialFormat extends Enum<SerialFormat>
| Enum Constant and Description | 
|---|
| BINARYPlain custom binary serialized CAS without type system, no filtering | 
| BINARY_TSIPlain custom binary serialized CAS, no filtering, plus serialized TSI
   used to reinitialize the CAS | 
| COMPRESSEDBinary compressed CAS without type system, no filtering  (form 4) | 
| COMPRESSED_FILTEREDBinary compressed CAS with reachability and type and feature filtering (form 6) | 
| COMPRESSED_FILTERED_TSBinary compressed form 6 CAS with embedded type system
 representing the type system encoding the serialization
 specifies the type system used for the serialized form | 
| COMPRESSED_FILTERED_TSIType system and index specification included
 used to reinitialize the CAS and 
 specifies the type system used for the serialized form | 
| COMPRESSED_PROJECTIONwith subset of views (not in use) | 
| COMPRESSED_TSIBinary Compressed Form 4, plus serialized TSI
   used to reinitialize the CAS | 
| SERIALIZEDJava-serialized CAS without type system | 
| SERIALIZED_TSIJava-serialized CAS with type system and index definitions
 The Typs System and Index Definition replaces the CAS's when deserializing. | 
| UNKNOWNUnknown format | 
| XCASXML-serialized CAS | 
| XMIXML-serialized CAS | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getDefaultFileExtension() | 
| static SerialFormat | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SerialFormat[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SerialFormat UNKNOWN
public static final SerialFormat XCAS
public static final SerialFormat XMI
public static final SerialFormat BINARY
public static final SerialFormat COMPRESSED
public static final SerialFormat COMPRESSED_FILTERED
public static final SerialFormat COMPRESSED_PROJECTION
public static final SerialFormat SERIALIZED
public static final SerialFormat SERIALIZED_TSI
public static final SerialFormat COMPRESSED_FILTERED_TS
public static final SerialFormat COMPRESSED_FILTERED_TSI
public static final SerialFormat BINARY_TSI
public static final SerialFormat COMPRESSED_TSI
public static SerialFormat[] values()
for (SerialFormat c : SerialFormat.values()) System.out.println(c);
public static SerialFormat 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 getDefaultFileExtension()
Copyright © 2006–2017 The Apache Software Foundation. All rights reserved.