public class BPListDetector extends Object implements Detector
Without significant refactoring, this can't easily work as a true detector on plist subtypes. Rather, for now, we require the file to be parsed and then the parser adds the subtype for xml-based plists.
| Modifier and Type | Field and Description | 
|---|---|
| static MediaType | BITUNES | 
| static MediaType | BMEMGRAPH | 
| static MediaType | BPLIST | 
| static MediaType | BWEBARCHIVE | 
| static MediaType | ITUNES | 
| static MediaType | MEMGRAPH | 
| static MediaType | PLIST | 
| static MediaType | WEBARCHIVE | 
| Constructor and Description | 
|---|
| BPListDetector() | 
| Modifier and Type | Method and Description | 
|---|---|
| MediaType | detect(InputStream input,
      Metadata metadata)Detects the content type of the given input document. | 
| static MediaType | detectOnKeys(Set<String> keySet) | 
| static MediaType | detectXMLOnKeys(Set<String> keySet) | 
public static MediaType MEMGRAPH
public static MediaType WEBARCHIVE
public static MediaType PLIST
public static MediaType ITUNES
public static MediaType BMEMGRAPH
public static MediaType BWEBARCHIVE
public static MediaType BPLIST
public static MediaType BITUNES
public MediaType detect(InputStream input, Metadata metadata) throws IOException
Detectorapplication/octet-stream if the type of the document
 can not be detected.
 
 If the document input stream is not available, then the first
 argument may be null. Otherwise the detector may
 read bytes from the start of the stream to help in type detection.
 The given stream is guaranteed to support the
 mark feature and the detector
 is expected to mark the stream before
 reading any bytes from it, and to reset
 the stream before returning. The stream must not be closed by the
 detector.
 
The given input metadata is only read, not modified, by the detector.
detect in interface Detectorinput - input stream must support resetmetadata - input metadata for the documentIOExceptionCopyright © 2007–2022 The Apache Software Foundation. All rights reserved.