Package | Description |
---|---|
org.apache.metamodel.spring | |
org.apache.metamodel.util |
Utilities and convenient classes
|
Modifier and Type | Method and Description |
---|---|
OutputStream |
SpringResource.append() |
InputStream |
SpringResource.read() |
OutputStream |
SpringResource.write() |
Modifier and Type | Method and Description |
---|---|
OutputStream |
HdfsResource.append() |
OutputStream |
UrlResource.append() |
OutputStream |
Resource.append()
Opens up an
OutputStream to append to the resource. |
OutputStream |
InMemoryResource.append() |
OutputStream |
FileResource.append() |
OutputStream |
ClasspathResource.append() |
void |
Resource.append(Action<OutputStream> appendCallback)
Opens up an
InputStream to append (write at the end of the
existing stream) to the resource. |
void |
AbstractResource.append(Action<OutputStream> appendCallback) |
InputStream |
HdfsResource.read() |
InputStream |
UrlResource.read() |
InputStream |
Resource.read()
Opens up an
InputStream to read from the resource. |
InputStream |
InMemoryResource.read() |
InputStream |
FileResource.read() |
InputStream |
ClasspathResource.read() |
void |
Resource.read(Action<InputStream> readCallback)
Opens up an
InputStream to read from the resource, and allows a
callback to perform writing actions on it. |
<E> E |
Resource.read(Function<InputStream,E> readCallback)
* Opens up an
InputStream to read from the resource, and allows a
callback function to perform writing actions on it and return the
function's result. |
<E> E |
AbstractResource.read(Function<InputStream,E> readCallback) |
<E> E |
Resource.read(UncheckedFunc<InputStream,E> readCallback)
Opens up an
InputStream to read from the resource, and allows a
callback function to perform writing actions on it and return the
function's result. |
OutputStream |
HdfsResource.write() |
OutputStream |
UrlResource.write() |
OutputStream |
Resource.write()
Opens up an
OutputStream to write to the resource. |
OutputStream |
InMemoryResource.write() |
OutputStream |
FileResource.write() |
OutputStream |
ClasspathResource.write() |
void |
Resource.write(Action<OutputStream> writeCallback)
Opens up an
OutputStream to write to the resource, and allows a
callback to perform writing actions on it. |
void |
AbstractResource.write(Action<OutputStream> writeCallback) |
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.