Package com.googlecode.jsonplugin.annotations

Examples of com.googlecode.jsonplugin.annotations.JSON.format()


        if (method != null)
            json = method.getAnnotation(JSON.class);
        if (this.formatter == null)
            this.formatter = new SimpleDateFormat(JSONUtil.RFC3339_FORMAT);

        DateFormat formatter = (json != null) && (json.format().length() > 0) ? new SimpleDateFormat(
                json.format())
                : this.formatter;
        this.string(formatter.format(date));
    }
View Full Code Here


            json = method.getAnnotation(JSON.class);
        if (this.formatter == null)
            this.formatter = new SimpleDateFormat(JSONUtil.RFC3339_FORMAT);

        DateFormat formatter = (json != null) && (json.format().length() > 0) ? new SimpleDateFormat(
                json.format())
                : this.formatter;
        this.string(formatter.format(date));
    }

    /**
 
View Full Code Here

        } else if (clazz.equals(Date.class)) {
            try {
                JSON json = method.getAnnotation(JSON.class);

                DateFormat formatter = new SimpleDateFormat(
                        (json != null) && (json.format().length() > 0) ?
                                json.format() : this.dateFormat);
                return formatter.parse((String) value);
            } catch (ParseException e) {
                log.error(e.getMessage(), e);
                throw new JSONException("Unable to parse date from: " + value);
View Full Code Here

            try {
                JSON json = method.getAnnotation(JSON.class);

                DateFormat formatter = new SimpleDateFormat(
                        (json != null) && (json.format().length() > 0) ?
                                json.format() : this.dateFormat);
                return formatter.parse((String) value);
            } catch (ParseException e) {
                log.error(e.getMessage(), e);
                throw new JSONException("Unable to parse date from: " + value);
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.