| Class | Description |
|---|---|
| InstantMarshaller | |
| LocalDateTimeMarshaller |
Marshaller for
LocalDateTime instances, using the following strategy:
Marshal local date
Marshal local time
|
| MonthDayMarshaller |
Marshals
MonthDay instances. |
| OffsetDateTimeMarshaller |
Marshaller for
OffsetDateTime instances, using the following strategy:
Marshal local date
Marshal local time
Marshal zone offset
|
| OffsetTimeMarshaller |
Marshaller for
OffsetTime instances, using the following strategy:
Marshal local time
Marshal zone offset
|
| PeriodMarshaller |
Marshaller for
Period instances, using the following strategy:
Marshal Period.ZERO as zero bytes
Marshal number of years of period as signed integer
Marshal number of months of period as signed integer
Marshal number of days of period as signed integer
|
| YearMonthMarshaller |
Marshaller for
YearMonth instances, using the following strategy:
Marshal epoch year
Marshal month as enum
|
| ZonedDateTimeMarshaller |
Marshaller for
ZonedDateTime instances, using the following strategy:
Marshal duration since epoch
Marshal time zone
|
| Enum | Description |
|---|---|
| DurationMarshaller |
Marshaller for
Duration instances, using the following strategy:
Marshal Duration.ZERO as zero bytes
Marshal number of seconds of duration as unsigned long
Marshal sub-second value of duration as unsigned integer, using millisecond precision, if possible
|
| LocalDateMarshaller |
Marshals a
LocalDate as an epoch day. |
| LocalTimeMarshaller |
Marshaller for
LocalTime instances, using the following strategy:
Marshal LocalTime.MIDNIGHT as zero bytes
Marshal number of seconds in day as unsigned integer, using hours or minutes precision, if possible
Marshal sub-second value of day as unsigned integer, using millisecond precision if possible
|
| TimeMarshallerProvider |
Provider for java.time marshallers.
|
| YearMarshaller |
Marshals
Year instances as number of years since the epoch year. |
| ZoneOffsetMarshaller |
Marshalling for
ZoneOffset instances using the following strategy:
Marshal ZoneOffset.UTC as zero bytes
If offset is of form ±HH, marshal as signed integer of hours
If offset is of form ±HH:MM, marshal as signed integer of total minutes
If offset is of form ±HH:MM:SS, marshal as signed integer of total seconds
|
Copyright © 2021 JBoss by Red Hat. All rights reserved.