Class DefaultJspWriter

    • Constructor Detail

      • DefaultJspWriter

        public DefaultJspWriter​(Writer out)
    • Method Detail

      • clear

        public final void clear()
                         throws IOException
        Specified by:
        clear in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • clearBuffer

        public void clearBuffer()
                         throws IOException
        Specified by:
        clearBuffer in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • getRemaining

        public int getRemaining()
        Specified by:
        getRemaining in class javax.servlet.jsp.JspWriter
      • newLine

        public void newLine()
                     throws IOException
        Specified by:
        newLine in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(boolean b)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(char c)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(int i)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(long l)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(float f)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(double d)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(char[] s)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • print

        public void print​(Object obj)
                   throws IOException
        Specified by:
        print in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println()
                     throws IOException
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(boolean x)
                     throws IOException
        Prints a boolean value and then terminate the line. This method behaves as though it invokes print(boolean) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(char x)
                     throws IOException
        Prints a character and then terminate the line. This method behaves as though it invokes print(char) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(int x)
                     throws IOException
        Prints an integer and then terminate the line. This method behaves as though it invokes print(int) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(long x)
                     throws IOException
        Prints a long integer and then terminate the line. This method behaves as though it invokes print(long) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(float x)
                     throws IOException
        Prints a floating-point number and then terminate the line. This method behaves as though it invokes print(float) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(double x)
                     throws IOException
        Prints a double-precision floating-point number and then terminate the line. This method behaves as though it invokes print(double) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(char[] x)
                     throws IOException
        Prints an array of characters and then terminate the line. This method behaves as though it invokes print(char[]) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(String x)
                     throws IOException
        Prints a String and then terminate the line. This method behaves as though it invokes print(String) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException
      • println

        public void println​(Object x)
                     throws IOException
        Prints an Object and then terminate the line. This method behaves as though it invokes print(Object) and then println().
        Specified by:
        println in class javax.servlet.jsp.JspWriter
        Throws:
        IOException