Uses of Interface
org.modeshape.graph.mimetype.MimeTypeDetector

Packages that use MimeTypeDetector
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.mimetype This package defines an interface for the MIME type detector, which represents a component that is able to determine the MIME type for a stream of data and/or the name of the file containing the data. 
org.modeshape.graph.sequencer A sequencer in ModeShape is a component that is able to process information (usually the content of a file, or a property value on a node) and recreate that information as a graph of structured content. 
org.modeshape.graph.text This package defines an interface for components that extract text from content. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.mimetype.aperture The classes that make up the Aperture MIME type detector. 
org.modeshape.repository The components and services that make up ModeShape's lower-level graph engine, which is used within its JCR Engine. 
 

Uses of MimeTypeDetector in org.modeshape.graph
 

Methods in org.modeshape.graph that return MimeTypeDetector
 MimeTypeDetector ExecutionContext.getMimeTypeDetector()
          Return an object that can be used to determine the MIME type of some content, such as the content of a file.
 

Methods in org.modeshape.graph with parameters of type MimeTypeDetector
 ExecutionContext ExecutionContext.with(MimeTypeDetector mimeTypeDetector)
          Create a new execution context that is the same as this context, but which uses the supplied MIME type detector.
 

Constructors in org.modeshape.graph with parameters of type MimeTypeDetector
ExecutionContext(SecurityContext securityContext, NamespaceRegistry namespaceRegistry, ValueFactories valueFactories, PropertyFactory propertyFactory, MimeTypeDetector mimeTypeDetector, TextExtractor textExtractor, ClassLoaderFactory classLoaderFactory, Map<String,String> data, String processId)
          Create an instance of the execution context by supplying all parameters.
 

Uses of MimeTypeDetector in org.modeshape.graph.mimetype
 

Classes in org.modeshape.graph.mimetype that implement MimeTypeDetector
 class ExtensionBasedMimeTypeDetector
          A MimeTypeDetector that attempts to match the extension of the supplied name against a set of known file extensions.
 class MimeTypeDetectors
          Facility for managing MimeTypeDetectorConfigs.
 

Constructor parameters in org.modeshape.graph.mimetype with type arguments of type MimeTypeDetector
MimeTypeDetectorConfig(String name, String description, Class<? extends MimeTypeDetector> clazz)
           
MimeTypeDetectorConfig(String name, String description, Map<String,Object> properties, Class<? extends MimeTypeDetector> clazz)
           
 

Uses of MimeTypeDetector in org.modeshape.graph.sequencer
 

Methods in org.modeshape.graph.sequencer with parameters of type MimeTypeDetector
 StreamSequencerContext StreamSequencerContext.with(MimeTypeDetector mimeTypeDetector)
          Create a new execution context that is the same as this context, but which uses the supplied MIME type detector.
 

Uses of MimeTypeDetector in org.modeshape.graph.text
 

Methods in org.modeshape.graph.text with parameters of type MimeTypeDetector
 TextExtractorContext TextExtractorContext.with(MimeTypeDetector mimeTypeDetector)
          Create a new execution context that is the same as this context, but which uses the supplied MIME type detector.
 

Uses of MimeTypeDetector in org.modeshape.jcr
 

Methods in org.modeshape.jcr that return MimeTypeDetector
 MimeTypeDetector JcrTools.mimeTypeDetector(Session session)
           
 

Uses of MimeTypeDetector in org.modeshape.mimetype.aperture
 

Classes in org.modeshape.mimetype.aperture that implement MimeTypeDetector
 class ApertureMimeTypeDetector
          A MimeTypeDetector that uses the Aperture library.
 

Uses of MimeTypeDetector in org.modeshape.repository
 

Methods in org.modeshape.repository that return MimeTypeDetector
protected  MimeTypeDetector ModeShapeEngine.getMimeTypeDetector()
          Return the component that is able to detect MIME types given the name of a stream and a stream.
 



Copyright © 2008-2012 JBoss, a division of Red Hat. All Rights Reserved.