Serialized Form


Package org.apache.tika.detect

Class org.apache.tika.detect.CompositeDetector extends Object implements Serializable

serialVersionUID: 5980683158436430252L

Serialized Fields

registry

MediaTypeRegistry registry

detectors

List<E> detectors

Class org.apache.tika.detect.DefaultDetector extends CompositeDetector implements Serializable

serialVersionUID: -8170114575326908027L

Class org.apache.tika.detect.MagicDetector extends Object implements Serializable

Serialized Fields

type

MediaType type
The matching media type. Returned by the MagicDetector.detect(InputStream, Metadata) method if a match is found.


length

int length
Length of the comparison window. All the byte arrays here are this long.


pattern

byte[] pattern
The magic match pattern. If this byte pattern is equal to the possibly bit-masked bytes from the input stream, then the type detection succeeds and the configured MagicDetector.type is returned.


mask

byte[] mask
Bit mask that is applied to the source bytes before pattern matching.


offsetRangeBegin

int offsetRangeBegin
First offset (inclusive) of the comparison window within the document input stream. Greater than or equal to zero.


offsetRangeEnd

int offsetRangeEnd
Last offset (inclusive) of the comparison window within the document input stream. Greater than or equal to the first offset.

Note that this is not the offset of the last byte read from the document stream. Instead, the last window of bytes to be compared starts at this offset.


asString

String asString

Class org.apache.tika.detect.NameDetector extends Object implements Serializable

Serialized Fields

patterns

Map<K,V> patterns
The regular expression patterns used for type detection.

Class org.apache.tika.detect.TextDetector extends Object implements Serializable

serialVersionUID: 4774601079503507765L

Class org.apache.tika.detect.TypeDetector extends Object implements Serializable


Package org.apache.tika.exception

Class org.apache.tika.exception.EncryptedDocumentException extends TikaException implements Serializable

Class org.apache.tika.exception.TikaException extends Exception implements Serializable


Package org.apache.tika.extractor

Class org.apache.tika.extractor.ParserContainerExtractor extends Object implements Serializable

serialVersionUID: 2261131045580861514L

Serialized Fields

parser

Parser parser

detector

Detector detector

Package org.apache.tika.fork

Class org.apache.tika.fork.ForkParser extends AbstractParser implements Serializable

serialVersionUID: -4962742892274663950L

Serialized Fields

loader

ClassLoader loader

parser

Parser parser

java

String java
Java command line


poolSize

int poolSize
Process pool size


currentlyInUse

int currentlyInUse

pool

Queue<E> pool

Package org.apache.tika.io

Class org.apache.tika.io.EndianUtils.BufferUnderrunException extends TikaException implements Serializable

serialVersionUID: 8358288231138076276L

Class org.apache.tika.io.IOExceptionWithCause extends IOException implements Serializable

serialVersionUID: 1L

Class org.apache.tika.io.TaggedIOException extends IOExceptionWithCause implements Serializable

Serialized Fields

tag

Object tag
The object reference used to tag the exception.


Package org.apache.tika.metadata

Class org.apache.tika.metadata.Metadata extends Object implements Serializable

serialVersionUID: 5623926545693153182L

Serialized Fields

metadata

Map<K,V> metadata
A map of all metadata attributes.

Class org.apache.tika.metadata.PropertyTypeException extends IllegalArgumentException implements Serializable


Package org.apache.tika.mime

Class org.apache.tika.mime.MediaType extends Object implements Serializable

serialVersionUID: -3831000556189036392L

Serialized Fields

type

String type

subtype

String subtype

parameters

SortedMap<K,V> parameters
Immutable map of media type parameters.

Class org.apache.tika.mime.MediaTypeRegistry extends Object implements Serializable

serialVersionUID: 4710974869988895410L

Serialized Fields

registry

Map<K,V> registry
Registry of known media types, including type aliases. A canonical media type is handled as an identity mapping, while an alias is stored as a mapping from the alias to the corresponding canonical type.


inheritance

Map<K,V> inheritance
Known type inheritance relationships. The mapping is from a media type to the closest supertype.

Class org.apache.tika.mime.MimeType extends Object implements Serializable

serialVersionUID: 4357830439860729201L

Serialized Fields

type

MediaType type
The normalized media type name.


description

String description
Description of this media type.


magics

ArrayList<E> magics
The magics associated to this Mime-Type


rootXML

ArrayList<E> rootXML
The root-XML associated to this Mime-Type


minLength

int minLength
The minimum length of data to provides for magic analyzis


extensions

List<E> extensions
All known file extensions of this type, in order of preference (best first).

Class org.apache.tika.mime.MimeTypeException extends TikaException implements Serializable

Class org.apache.tika.mime.MimeTypes extends Object implements Serializable

serialVersionUID: -1350863170146349036L

Serialized Fields

rootMimeType

MimeType rootMimeType
Root type, application/octet-stream.


textMimeType

MimeType textMimeType
Text type, text/plain.


xmlMimeType

MimeType xmlMimeType

registry

MediaTypeRegistry registry
Registered media types and their aliases.


types

Map<K,V> types
All the registered MimeTypes indexed on their canonical names


patterns

org.apache.tika.mime.Patterns patterns
The patterns matcher


magics

SortedSet<E> magics
List of all registered magics


xmls

SortedSet<E> xmls
List of all registered rootXML


Package org.apache.tika.parser

Class org.apache.tika.parser.AbstractParser extends Object implements Serializable

serialVersionUID: 7186985395903074255L

Class org.apache.tika.parser.AutoDetectParser extends CompositeParser implements Serializable

serialVersionUID: 6110455808615143122L

Serialized Fields

detector

Detector detector
The type detector used by this parser to auto-detect the type of a document.

Class org.apache.tika.parser.CompositeParser extends AbstractParser implements Serializable

serialVersionUID: 2192845797749627824L

Serialized Fields

registry

MediaTypeRegistry registry
Media type registry.


parsers

List<E> parsers
List of component parsers.


fallback

Parser fallback
The fallback parser, used when no better parser is available.

Class org.apache.tika.parser.CryptoParser extends DelegatingParser implements Serializable

serialVersionUID: -3507995752666557731L

Serialized Fields

transformation

String transformation

provider

Provider provider

types

Set<E> types

Class org.apache.tika.parser.DefaultParser extends CompositeParser implements Serializable

serialVersionUID: 3612324825403757520L

Class org.apache.tika.parser.DelegatingParser extends AbstractParser implements Serializable

Class org.apache.tika.parser.EmptyParser extends AbstractParser implements Serializable

serialVersionUID: -4218649699095732123L

Class org.apache.tika.parser.ErrorParser extends AbstractParser implements Serializable

Class org.apache.tika.parser.NetworkParser extends AbstractParser implements Serializable

Serialized Fields

uri

URI uri

supportedTypes

Set<E> supportedTypes

Class org.apache.tika.parser.ParseContext extends Object implements Serializable

serialVersionUID: -5921436862145826534L

Serialized Fields

context

Map<K,V> context
Map of objects in this context

Class org.apache.tika.parser.ParserDecorator extends AbstractParser implements Serializable

serialVersionUID: -3861669115439125268L

Serialized Fields

parser

Parser parser
The decorated parser instance.

Class org.apache.tika.parser.ParserPostProcessor extends ParserDecorator implements Serializable


Package org.apache.tika.parser.external

Class org.apache.tika.parser.external.CompositeExternalParser extends CompositeParser implements Serializable

serialVersionUID: 6962436916649024024L

Class org.apache.tika.parser.external.ExternalParser extends AbstractParser implements Serializable

serialVersionUID: -1079128990650687037L

Serialized Fields

supportedTypes

Set<E> supportedTypes
Media types supported by the external program.


metadataPatterns

Map<K,V> metadataPatterns
Regular Expressions to run over STDOUT to extract Metadata.


command

String[] command
The external command to invoke.

See Also:
Runtime.exec(String[])

Package org.apache.tika.sax

Class org.apache.tika.sax.TaggedSAXException extends SAXException implements Serializable

Serialized Fields

tag

Object tag
The object reference used to tag the exception.



Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.