Class JSONDateConvertor

  • All Implemented Interfaces:
    JSON.Convertor

    public class JSONDateConvertor
    extends java.lang.Object
    implements JSON.Convertor
    Convert a Date to JSON. If fromJSON is true in the constructor, the JSON generated will be of the form {class="java.util.Date",value="1/1/1970 12:00 GMT"} If fromJSON is false, then only the string value of the date is generated.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object fromJSON​(java.util.Map map)  
      void toJSON​(java.lang.Object obj, JSON.Output out)  
      • Methods inherited from class java.lang.Object

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

      • LOG

        private static final Logger LOG
      • _fromJSON

        private final boolean _fromJSON
      • _dateCache

        private final DateCache _dateCache
      • _format

        private final java.text.SimpleDateFormat _format
    • Constructor Detail

      • JSONDateConvertor

        public JSONDateConvertor()
      • JSONDateConvertor

        public JSONDateConvertor​(boolean fromJSON)
      • JSONDateConvertor

        public JSONDateConvertor​(java.lang.String format,
                                 java.util.TimeZone zone,
                                 boolean fromJSON)
      • JSONDateConvertor

        public JSONDateConvertor​(java.lang.String format,
                                 java.util.TimeZone zone,
                                 boolean fromJSON,
                                 java.util.Locale locale)