|
|||||||||
| Home >> All >> com >> lutris >> appserver >> server >> [ httpPresentation overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.lutris.appserver.server.httpPresentation
Class HttpPresentationOutputStream

java.lang.Objectjava.io.OutputStream
com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
- public abstract class HttpPresentationOutputStream
- extends java.io.OutputStream
HTTP request output stream writter.
| Constructor Summary | |
HttpPresentationOutputStream()
|
|
| Method Summary | |
void |
close()
This method closes the stream. |
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 |
HttpPresentationOutputStream
public HttpPresentationOutputStream()
| Method Detail |
public abstract void print(java.lang.String s) throws java.io.IOException
- Prints the string provided.
public abstract void print(boolean b)
throws java.io.IOException
- Prints the boolean provided.
public abstract void print(char c)
throws java.io.IOException
public abstract void print(int i)
throws java.io.IOException
- Prints the integer provided.
public abstract void print(long l)
throws java.io.IOException
- Prints the long provided.
public abstract void print(float f)
throws java.io.IOException
- Prints the float provided.
public abstract void print(double d)
throws java.io.IOException
- Prints the double provided.
println
public abstract void println()
throws java.io.IOException
- Prints a CRLF.
println
public abstract void println(java.lang.String s) throws java.io.IOException
- Prints the string provided, followed by a CRLF.
println
public abstract void println(boolean b)
throws java.io.IOException
- Prints the boolean provided, followed by a CRLF.
println
public abstract void println(char c)
throws java.io.IOException
- Prints the character provided, followed by a CRLF.
println
public abstract void println(int i)
throws java.io.IOException
- Prints the integer provided, followed by a CRLF.
println
public abstract void println(long l)
throws java.io.IOException
- Prints the long provided, followed by a CRLF.
println
public abstract void println(float f)
throws java.io.IOException
- Prints the float provided, followed by a CRLF.
println
public abstract void println(double d)
throws java.io.IOException
- Prints the double provided, followed by a CRLF.
close
public void close()
throws java.io.IOException
- Description copied from class:
java.io.OutputStream - This method closes the stream. Any internal or native resources
associated with this stream are freed. Any subsequent attempt to
access the stream might throw an exception.
This method in this class does nothing.
|
|||||||||
| Home >> All >> com >> lutris >> appserver >> server >> [ httpPresentation overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC