Lines Matching refs:stream

29 package javax.xml.stream;
32 import javax.xml.stream.util.XMLEventAllocator;
57 * <tr><td>javax.xml.stream.isValidating</td><td>Turns on/off implementation specific DTD validation</td><td>Boolean</td><td>False</td><td>No</td></tr>
58 * <tr><td>javax.xml.stream.isNamespaceAware</td><td>Turns on/off namespace processing for XML 1.0 support</td><td>Boolean</td><td>True</td><td>True (required) / False (optional)</td></tr>
59 * <tr><td>javax.xml.stream.isCoalescing</td><td>Requires the processor to coalesce adjacent character data</td><td>Boolean</td><td>False</td><td>Yes</td></tr>
60 * <tr><td>javax.xml.stream.isReplacingEntityReferences</td><td>replace internal entity references with their replacement text and report them as characters</td><td>Boolean</td><td>True</td><td>Yes</td></tr>
61 *<tr><td>javax.xml.stream.isSupportingExternalEntities</td><td>Resolve external parsed entities</td><td>Boolean</td><td>Unspecified</td><td>Yes</td></tr>
62 *<tr><td>javax.xml.stream.supportDTD</td><td>Use this property to request processors that do not support DTDs</td><td>Boolean</td><td>True</td><td>Yes</td></tr>
63 *<tr><td>javax.xml.stream.reporter</td><td>sets/gets the impl of the XMLReporter </td><td>javax.xml.stream.XMLReporter</td><td>Null</td><td>Yes</td></tr>
64 *<tr><td>javax.xml.stream.resolver</td><td>sets/gets the impl of the XMLResolver interface</td><td>javax.xml.stream.XMLResolver</td><td>Null</td><td>Yes</td></tr>
65 *<tr><td>javax.xml.stream.allocator</td><td>sets/gets the impl of the XMLEventAllocator interface</td><td>javax.xml.stream.util.XMLEventAllocator</td><td>Null</td><td>Yes</td></tr>
78 * @see javax.xml.stream.util.XMLEventAllocator
89 "javax.xml.stream.isNamespaceAware";
95 "javax.xml.stream.isValidating";
101 "javax.xml.stream.isCoalescing";
109 "javax.xml.stream.isReplacingEntityReferences";
115 "javax.xml.stream.isSupportingExternalEntities";
121 "javax.xml.stream.supportDTD";
128 "javax.xml.stream.reporter";
134 "javax.xml.stream.resolver";
140 "javax.xml.stream.allocator";
142 static final String DEFAULIMPL = "com.sun.xml.internal.stream.XMLInputFactoryImpl";
154 "javax.xml.stream.XMLInputFactory",
163 * Use the javax.xml.stream.XMLInputFactory system property.
170 * in the file META-INF/services/javax.xml.stream.XMLInputFactory in jars
175 * can use the factory to configure and obtain stream instances.
187 "javax.xml.stream.XMLInputFactory",
265 * @param stream the InputStream to read from
268 public abstract XMLStreamReader createXMLStreamReader(java.io.InputStream stream)
273 * @param stream the InputStream to read from
274 * @param encoding the character encoding of the stream
277 public abstract XMLStreamReader createXMLStreamReader(java.io.InputStream stream, String encoding)
282 * @param systemId the system ID of the stream
283 * @param stream the InputStream to read from
285 public abstract XMLStreamReader createXMLStreamReader(String systemId, java.io.InputStream stream)
290 * @param systemId the system ID of the stream
336 * @param stream the InputStream to read from
339 public abstract XMLEventReader createXMLEventReader(java.io.InputStream stream)
344 * @param stream the InputStream to read from
345 * @param encoding the character encoding of the stream
348 public abstract XMLEventReader createXMLEventReader(java.io.InputStream stream, String encoding)
353 * @param systemId the system ID of the stream
354 * @param stream the InputStream to read from
357 public abstract XMLEventReader createXMLEventReader(String systemId, java.io.InputStream stream)
419 * due to the restriction of this property, {@link javax.xml.stream.XMLStreamException}
420 * will be thrown by the {@link javax.xml.stream.XMLStreamReader#next()} or
421 * {@link javax.xml.stream.XMLEventReader#nextEvent()} method.