org.hotrod.runtime.livesql.dialects.DateTimeLiteralRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-livesql Show documentation
Show all versions of hotrod-livesql Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
package org.hotrod.runtime.livesql.dialects;
public abstract class DateTimeLiteralRenderer {
public abstract String renderDate(final String isoDate);
public abstract String renderTime(final String isoTime, final int precision);
public abstract String renderTimestamp(final String isoTimestamp, final int precision);
public abstract String renderOffsetTime(final String isoTime, final String isoOffset, final int precision);
public abstract String renderOffsetTimestamp(final String isoTimestamp, final String isoOffset, final int precision);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy