Enum SerialFormat

    • Enum Constant Detail

      • UNKNOWN

        public static final SerialFormat UNKNOWN
        Unknown format
      • XCAS

        public static final SerialFormat XCAS
        XML-serialized CAS
      • XMI

        public static final SerialFormat XMI
        XML-serialized CAS
      • BINARY

        public static final SerialFormat BINARY
        Plain custom binary serialized CAS without type system, no filtering
      • COMPRESSED

        public static final SerialFormat COMPRESSED
        Binary compressed CAS without type system, no filtering (form 4)
      • COMPRESSED_FILTERED

        public static final SerialFormat COMPRESSED_FILTERED
        Binary compressed CAS with reachability and type and feature filtering (form 6)
      • COMPRESSED_PROJECTION

        public static final SerialFormat COMPRESSED_PROJECTION
        with subset of views (not in use)
      • SERIALIZED

        public static final SerialFormat SERIALIZED
        Java-serialized CAS without type system
      • SERIALIZED_TSI

        public static final SerialFormat 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

        public static final SerialFormat 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

        public static final SerialFormat 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

        public static final SerialFormat BINARY_TSI
        Plain custom binary serialized CAS, no filtering, plus serialized TSI used to reinitialize the CAS
      • COMPRESSED_TSI

        public static final SerialFormat COMPRESSED_TSI
        Binary Compressed Form 4, plus serialized TSI used to reinitialize the CAS
    • Method Detail

      • values

        public static SerialFormat[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SerialFormat c : SerialFormat.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SerialFormat valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getDefaultFileExtension

        public String getDefaultFileExtension()