Uses of Class
net.time4j.TemporalType
Package
Description
The main package contains four basic types of ISO-8601, namely
PlainDate
, PlainTime
, PlainTimestamp
and Moment
.Bridge to JDBC.
Bridge to XML.
-
Uses of TemporalType in net.time4j
Modifier and TypeFieldDescriptionstatic TemporalType<Clock,TimeSource<?>>
TemporalType.CLOCK
Bridge between the JSR-310-classjava.time.Clock
and the interfacenet.time4j.base.TimeSource
.static TemporalType<Instant,Moment>
TemporalType.INSTANT
Bridge between the JSR-310-classjava.time.Instant
and the classMoment
.static TemporalType<Calendar,ZonalDateTime>
TemporalType.JAVA_UTIL_CALENDAR
Bridge between a traditional Java calendar of typejava.util.Calendar
and the classZonalDateTime
.static TemporalType<Date,Moment>
TemporalType.JAVA_UTIL_DATE
Bridge between a traditional Java timestamp of typejava.util.Date
and the classMoment
.static TemporalType<TimeZone,Timezone>
TemporalType.JAVA_UTIL_TIMEZONE
Bridge between a traditional Java timezone of typejava.util.TimeZone
and the classnet.time4j.tz.Timezone
.static TemporalType<LocalDate,PlainDate>
TemporalType.LOCAL_DATE
Bridge between the JSR-310-classjava.time.LocalDate
and the classPlainDate
.static TemporalType<LocalDateTime,PlainTimestamp>
TemporalType.LOCAL_DATE_TIME
Bridge between the JSR-310-classjava.time.LocalDateTime
and the classPlainTimestamp
.static TemporalType<LocalTime,PlainTime>
TemporalType.LOCAL_TIME
Bridge between the JSR-310-classjava.time.LocalTime
and the classPlainTime
.static TemporalType<Long,Moment>
TemporalType.MILLIS_SINCE_UNIX
Bridge between a traditional Java timestamp as count of milliseconds since UNIX-epoch and the classMoment
.static TemporalType<Duration,Duration<ClockUnit>>
TemporalType.THREETEN_DURATION
Bridge between the JSR-310-classjava.time.Duration
and the classnet.time4j.Duration
.static TemporalType<Period,Duration<CalendarUnit>>
TemporalType.THREETEN_PERIOD
Bridge between the JSR-310-classjava.time.Period
and the classnet.time4j.Duration
.static TemporalType<ZonedDateTime,ZonalDateTime>
TemporalType.ZONED_DATE_TIME
Bridge between the JSR-310-classjava.time.ZonedDateTime
and the classZonalDateTime
. -
Uses of TemporalType in net.time4j.sql
Modifier and TypeClassDescriptionclass
JDBCAdapter<S,T>
Serves as bridge to temporal types in JDBC. -
Uses of TemporalType in net.time4j.xml
Modifier and TypeClassDescriptionclass
XMLAdapter<S,T>
Serves as bridge to temporal types in XML-related Java.