public enum SerialFormat extends Enum<SerialFormat>
Enum Constant and Description |
---|
BINARY
Plain custom binary serialized CAS without type system, no filtering
|
BINARY_TSI
Plain custom binary serialized CAS, no filtering, plus serialized TSI
used to reinitialize the CAS
|
COMPRESSED
Binary compressed CAS without type system, no filtering (form 4)
|
COMPRESSED_FILTERED
Binary compressed CAS with reachability and type and feature filtering (form 6)
|
COMPRESSED_FILTERED_TS
Binary 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_TSI
Type system and index specification included
used to reinitialize the CAS and
specifies the type system used for the serialized form
|
COMPRESSED_PROJECTION
with subset of views (not in use)
|
COMPRESSED_TSI
Binary Compressed Form 4, plus serialized TSI
used to reinitialize the CAS
|
SERIALIZED
Java-serialized CAS without type system
|
SERIALIZED_TSI
Java-serialized CAS with type system and index definitions
The Typs System and Index Definition replaces the CAS's when deserializing.
|
UNKNOWN
Unknown format
|
XCAS
XML-serialized CAS
|
XMI
XML-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.