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.JspWriter
IOException
public void clearBuffer() throws IOException
clearBuffer
in class javax.servlet.jsp.JspWriter
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in class javax.servlet.jsp.JspWriter
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class javax.servlet.jsp.JspWriter
IOException
public int getRemaining()
getRemaining
in class javax.servlet.jsp.JspWriter
public void newLine() throws IOException
newLine
in class javax.servlet.jsp.JspWriter
IOException
public void write(char[] ch, int start, int length) throws IOException
write
in class Writer
IOException
public void print(boolean b) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(char c) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(int i) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(long l) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(float f) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(double d) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(char[] s) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(String s) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void print(Object obj) throws IOException
print
in class javax.servlet.jsp.JspWriter
IOException
public void println() throws IOException
println
in class javax.servlet.jsp.JspWriter
IOException
public void println(boolean x) throws IOException
print(boolean)
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(char x) throws IOException
print(char)
and then println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(int x) throws IOException
print(int)
and then println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(long x) throws IOException
print(long)
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(float x) throws IOException
print(float)
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(double x) throws IOException
print(double)
and then println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(char[] x) throws IOException
print(char[])
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(String x) throws IOException
print(String)
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException
public void println(Object x) throws IOException
print(Object)
and then
println()
.println
in class javax.servlet.jsp.JspWriter
IOException