Package org.eclipse.net4j.util.io
Klasse XOROutputStream
java.lang.Object
java.io.OutputStream
org.eclipse.net4j.util.io.DelegatingOutputStream
org.eclipse.net4j.util.io.XOROutputStream
- Alle implementierten Schnittstellen:
Closeable,Flushable,AutoCloseable
- Autor:
- Eike Stepper
-
Feldübersicht
Von Klasse geerbte Felder org.eclipse.net4j.util.io.DelegatingOutputStream
out -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Von Klasse geerbte Methoden org.eclipse.net4j.util.io.DelegatingOutputStream
close, flush, getDelegateVon Klasse geerbte Methoden java.io.OutputStream
nullOutputStream, write, write
-
Konstruktordetails
-
XOROutputStream
-
-
Methodendetails
-
getKey
public int[] getKey() -
write
Beschreibung aus Klasse kopiert:DelegatingOutputStreamWrites the specifiedbyteto this output stream.The
writemethod ofDelegatingOutputStreamcalls thewritemethod of its underlying output stream, that is, it performs out.write(b).Implements the abstract write method of OutputStream.
- Setzt außer Kraft:
writein KlasseDelegatingOutputStream- Parameter:
b- thebyte.- Löst aus:
IOException- if an I/O error occurs.
-