public class DefaultJspWriter
extends javax.servlet.jsp.JspWriter
| Constructor and Description |
|---|
DefaultJspWriter(Writer out) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
void |
clearBuffer() |
void |
close() |
void |
flush() |
int |
getRemaining() |
void |
newLine() |
void |
print(boolean b) |
void |
print(char c) |
void |
print(char[] s) |
void |
print(double d) |
void |
print(float f) |
void |
print(int i) |
void |
print(long l) |
void |
print(Object obj) |
void |
print(String s) |
void |
println() |
void |
println(boolean x)
Prints a boolean value and then terminate the line.
|
void |
println(char x)
Prints a character and then terminate the line.
|
void |
println(char[] x)
Prints an array of characters and then terminate the line.
|
void |
println(double x)
Prints a double-precision floating-point number and then terminate the
line.
|
void |
println(float x)
Prints a floating-point number and then terminate the line.
|
void |
println(int x)
Prints an integer and then terminate the line.
|
void |
println(long x)
Prints a long integer and then terminate the line.
|
void |
println(Object x)
Prints an Object and then terminate the line.
|
void |
println(String x)
Prints a String and then terminate the line.
|
void |
write(char[] ch,
int start,
int length) |
public DefaultJspWriter(Writer out)
public final void clear()
throws IOException
clear in class javax.servlet.jsp.JspWriterIOExceptionpublic void clearBuffer()
throws IOException
clearBuffer in class javax.servlet.jsp.JspWriterIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class javax.servlet.jsp.JspWriterIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class javax.servlet.jsp.JspWriterIOExceptionpublic int getRemaining()
getRemaining in class javax.servlet.jsp.JspWriterpublic void newLine()
throws IOException
newLine in class javax.servlet.jsp.JspWriterIOExceptionpublic void write(char[] ch,
int start,
int length)
throws IOException
write in class WriterIOExceptionpublic void print(boolean b)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(char c)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(int i)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(long l)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(float f)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(double d)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(char[] s)
throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(String s) throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void print(Object obj) throws IOException
print in class javax.servlet.jsp.JspWriterIOExceptionpublic void println()
throws IOException
println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(boolean x)
throws IOException
print(boolean) and then
println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(char x)
throws IOException
print(char) and then println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(int x)
throws IOException
print(int) and then println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(long x)
throws IOException
print(long) and then
println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(float x)
throws IOException
print(float) and then
println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(double x)
throws IOException
print(double) and then println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(char[] x)
throws IOException
print(char[]) and then
println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(String x) throws IOException
print(String) and then
println().println in class javax.servlet.jsp.JspWriterIOExceptionpublic void println(Object x) throws IOException
print(Object) and then
println().println in class javax.servlet.jsp.JspWriterIOException