Class LocalDateFormatter

  • All Implemented Interfaces:
    IFormatter

    public class LocalDateFormatter
    extends java.lang.Object
    implements IFormatter
    LocalDate formatter with multilocale support.

    Although it does some refinement for Spanish, Catalan, Polish, Croatian and French, it supports formatting on locale basis.

    Since:
    6.1
    Author:
    Javier Paniza
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String format​(javax.servlet.http.HttpServletRequest request, java.lang.Object date)
      From a object return a String to render in HTML.
      java.lang.Object parse​(javax.servlet.http.HttpServletRequest request, java.lang.String string)
      From a String obtained from a HTTP request return a java object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LocalDateFormatter

        public LocalDateFormatter()
    • Method Detail

      • format

        public java.lang.String format​(javax.servlet.http.HttpServletRequest request,
                                       java.lang.Object date)
        Description copied from interface: IFormatter
        From a object return a String to render in HTML.
        Specified by:
        format in interface IFormatter
      • parse

        public java.lang.Object parse​(javax.servlet.http.HttpServletRequest request,
                                      java.lang.String string)
                               throws java.text.ParseException
        Description copied from interface: IFormatter
        From a String obtained from a HTTP request return a java object.
        Specified by:
        parse in interface IFormatter
        Throws:
        java.text.ParseException