Package | Description |
---|---|
co.codewizards.cloudstore.core.io |
Input/output-related classes.
|
co.codewizards.cloudstore.core.oio |
Abstraction of several classes from the packages java.io.* and java.nio.*.
|
co.codewizards.cloudstore.ls.client.util |
Modifier and Type | Interface and Description |
---|---|
interface |
IByteArrayOutputStream
ByteArrayOutputStream -representing interface to be used in API contracts. |
Modifier and Type | Class and Description |
---|---|
class |
ByteArrayOutputStream
Subclass of
ByteArrayOutputStream also implementing IByteArrayOutputStream . |
class |
NoCloseOutputStream |
Modifier and Type | Method and Description |
---|---|
static IOutputStream |
StreamUtil.castStream(OutputStream out)
Casts an
OutputStream as IOutputStream , if possible; or
converts it by instantiating a new bridge instance, if a simple Java cast is not possible. |
IOutputStream |
LockFile.createOutputStream()
Creates an
OutputStream writing into the locked file (overwriting
all old content). |
Modifier and Type | Method and Description |
---|---|
static OutputStream |
StreamUtil.castStream(IOutputStream out)
Casts an
IOutputStream as OutputStream , if possible; or
converts it by instantiating a new bridge instance, if a simple Java cast is not possible. |
void |
ByteArrayOutputStream.writeTo(IOutputStream out) |
void |
IByteArrayOutputStream.writeTo(IOutputStream out)
Writes the complete contents of this byte array output stream to
the specified output stream argument, as if by calling the output
stream's write method using
out.write(buf, 0, count) . |
Modifier and Type | Method and Description |
---|---|
IOutputStream |
File.createOutputStream() |
IOutputStream |
IoFile.createOutputStream() |
IOutputStream |
File.createOutputStream(boolean append) |
IOutputStream |
IoFile.createOutputStream(boolean append) |
Modifier and Type | Method and Description |
---|---|
static IOutputStream |
FileLs.createOutputStream(File file) |
static IOutputStream |
FileLs.createOutputStream(File file,
boolean append) |
Copyright © 2013–2019. All rights reserved.