Example usage for com.fasterxml.jackson.databind.util ISO8601DateFormat subclass-usage

List of usage examples for com.fasterxml.jackson.databind.util ISO8601DateFormat subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.util ISO8601DateFormat subclass-usage.

Usage

From source file com.hillert.botanic.support.ISO8601DateFormatWithMilliSeconds.java

/**
 * Improved version of the {@link ISO8601DateFormat} that also serializes milliseconds.
 *
 * @author Gunnar Hillert
 * @since 1.0
 *

From source file org.springframework.batch.admin.domain.support.ISO8601DateFormatWithMilliSeconds.java

/**
 * Improved version of the {@link com.fasterxml.jackson.databind.util.ISO8601DateFormat} that also serializes milliseconds.
 *
 * @author Gunnar Hillert
 * @since 2.0
 */

From source file org.springframework.cloud.dataflow.rest.job.support.ISO8601DateFormatWithMilliSeconds.java

/**
 * Improved version of the {@link ISO8601DateFormat} that also serializes milliseconds.
 *
 * @author Gunnar Hillert
 */
@SuppressWarnings("serial")

From source file com.unboundid.scim2.common.utils.ScimDateFormat.java

/**
 * Like ISO8601DateFormat except this format includes milliseconds when
 * serializing.
 */
public class ScimDateFormat extends ISO8601DateFormat {
    /**

From source file com.autodesk.client.RFC3339DateFormat.java

public class RFC3339DateFormat extends ISO8601DateFormat {

    // Same as ISO8601DateFormat but serializing milliseconds.
    @Override
    public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) {
        String value = ISO8601Utils.format(date, true);