All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opentext.ia.sip.assembly.stringtemplate.XmlDateRenderer Maven / Gradle / Ivy

There is a newer version: 12.6.6
Show newest version
/*
 * Copyright (c) 2016-2017 by OpenText Corporation. All Rights Reserved.
 */
package com.opentext.ia.sip.assembly.stringtemplate;

import java.util.Date;
import java.util.Locale;

import javax.annotation.Nullable;

import org.stringtemplate.v4.AttributeRenderer;

import com.opentext.ia.sdk.support.datetime.Dates;


class XmlDateRenderer implements AttributeRenderer {

  @Nullable
  @Override
  public String toString(Date o, String formatString, Locale locale) {
    return Dates.toIso(o);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy