|
EAF 7.6 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
public abstract class HttpPresentationOutputStream
HTTP request output stream writter.
Constructor Summary | |
---|---|
HttpPresentationOutputStream()
|
Method Summary | |
---|---|
void |
close()
|
abstract void |
print(boolean b)
Prints the boolean provided. |
abstract void |
print(char c)
|
abstract void |
print(double d)
Prints the double provided. |
abstract void |
print(float f)
Prints the float provided. |
abstract void |
print(int i)
Prints the integer provided. |
abstract void |
print(long l)
Prints the long provided. |
abstract void |
print(java.lang.String s)
Prints the string provided. |
abstract void |
println()
Prints a CRLF. |
abstract void |
println(boolean b)
Prints the boolean provided, followed by a CRLF. |
abstract void |
println(char c)
Prints the character provided, followed by a CRLF. |
abstract void |
println(double d)
Prints the double provided, followed by a CRLF. |
abstract void |
println(float f)
Prints the float provided, followed by a CRLF. |
abstract void |
println(int i)
Prints the integer provided, followed by a CRLF. |
abstract void |
println(long l)
Prints the long provided, followed by a CRLF. |
abstract void |
println(java.lang.String s)
Prints the string provided, followed by a CRLF. |
Methods inherited from class java.io.OutputStream |
---|
flush, write, write, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public HttpPresentationOutputStream()
Method Detail |
---|
public abstract void print(java.lang.String s) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void print(boolean b) throws java.io.IOException
java.io.IOException
- if an I/O error has occurred.public abstract void print(char c) throws java.io.IOException
java.io.IOException
public abstract void print(int i) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void print(long l) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void print(float f) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void print(double d) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println() throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(java.lang.String s) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(boolean b) throws java.io.IOException
java.io.IOException
- if an I/O error has occurred.public abstract void println(char c) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(int i) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(long l) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(float f) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic abstract void println(double d) throws java.io.IOException
java.io.IOException
- if an I/O error has occurredpublic void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in class java.io.OutputStream
java.io.IOException
|
EAF 7.6 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |