Package | Description |
---|---|
org.apache.commons.io.build |
Provides classes to implement IO builders.
|
org.apache.commons.io.input |
Provides implementations of input classes, such as
InputStream and Reader . |
org.apache.commons.io.output |
Provides implementations of output classes, such as
OutputStream and
Writer . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractOrigin<T,B extends AbstractOrigin<T,B>>
Abstracts the origin of data for builders like a
File , Path , Reader , Writer , InputStream , OutputStream , and
URI . |
Modifier and Type | Class and Description |
---|---|
static class |
AbstractOrigin.ByteArrayOrigin
A
byte[] origin. |
static class |
AbstractOrigin.CharSequenceOrigin
A
CharSequence origin. |
static class |
AbstractOrigin.FileOrigin
A
File origin. |
static class |
AbstractOrigin.InputStreamOrigin
An
InputStream origin. |
static class |
AbstractOrigin.OutputStreamOrigin
An
OutputStream origin. |
static class |
AbstractOrigin.PathOrigin
A
Path origin. |
static class |
AbstractOrigin.ReaderOrigin
An
Reader origin. |
static class |
AbstractOrigin.URIOrigin
A
URI origin. |
static class |
AbstractOrigin.WriterOrigin
An
Writer origin. |
Modifier and Type | Field and Description |
---|---|
private AbstractOrigin<?,?> |
AbstractOriginSupplier.origin
The underlying origin.
|
Modifier and Type | Method and Description |
---|---|
protected AbstractOrigin<?,?> |
AbstractOriginSupplier.checkOrigin()
Checks whether the origin is null.
|
protected AbstractOrigin<?,?> |
AbstractOriginSupplier.getOrigin()
Gets the origin.
|
Modifier and Type | Method and Description |
---|---|
protected B |
AbstractOriginSupplier.setOrigin(AbstractOrigin<?,?> origin)
Sets a new origin.
|
Modifier and Type | Method and Description |
---|---|
protected Tailer.Builder |
Tailer.Builder.setOrigin(AbstractOrigin<?,?> origin)
Sets the origin.
|
Modifier and Type | Field and Description |
---|---|
private AbstractOrigin<?,?> |
LockableFileWriter.Builder.lockDirectory |