Package org.apache.uima.cas
Enum Class SerialFormat
- All Implemented Interfaces:
Serializable
,Comparable<SerialFormat>
,Constable
The various forms of serialization (typically of the CAS)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPlain custom binary serialized CAS without type system, no filteringPlain custom binary serialized CAS, no filtering, plus serialized TSI used to reinitialize the CASBinary compressed CAS without type system, no filtering (form 4)Binary compressed CAS with reachability and type and feature filtering (form 6)Binary compressed form 6 CAS with embedded type system representing the type system encoding the serialization specifies the type system used for the serialized formType system and index specification included used to reinitialize the CAS and specifies the type system used for the serialized formwith subset of views (not in use)Binary Compressed Form 4, plus serialized TSI used to reinitialize the CASJava-serialized CAS without type systemJava-serialized CAS with type system and index definitions The Typs System and Index Definition replaces the CAS's when deserializing.Unknown formatXML-serialized CASXML-serialized CAS, using xml version 1.1XML-serialized CASXML-serialized CAS, using xml version 1.1XML-serialized CAS, using xml version 1.1 - pretty-printedXML-serialized CAS, using xml version 1.1 - pretty-printed -
Method Summary
Modifier and TypeMethodDescriptionstatic SerialFormat
Returns the enum constant of this class with the specified name.static SerialFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Unknown format -
XCAS
XML-serialized CAS -
XMI
XML-serialized CAS -
BINARY
Plain custom binary serialized CAS without type system, no filtering -
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_PROJECTION
with subset of views (not in use) -
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. -
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 -
BINARY_TSI
Plain custom binary serialized CAS, no filtering, plus serialized TSI used to reinitialize the CAS -
COMPRESSED_TSI
Binary Compressed Form 4, plus serialized TSI used to reinitialize the CAS -
XCAS_1_1
XML-serialized CAS, using xml version 1.1 -
XMI_1_1
XML-serialized CAS, using xml version 1.1 -
XMI_PRETTY
XML-serialized CAS, using xml version 1.1 - pretty-printed -
XMI_1_1_PRETTY
XML-serialized CAS, using xml version 1.1 - pretty-printed
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getDefaultFileExtension
-