java.lang.Object
io.github.mmm.base.temporal.TemporalConverterDefault
- All Implemented Interfaces:
TemporalConverter
- Direct Known Subclasses:
TemporalConverterLegacy
Simple utility class to convert to standard
Temporal types.- See Also:
-
Method Summary
Modifier and TypeMethodDescription<T> TconvertAndEvaluate(Object temporal1, Object temporal2, BiFunction<?, ?, T> function) convertToInstant(Object value) convertToLocalDate(Object value) convertToLocalDateTime(Object value) convertToLocalTime(Object value) convertToOffsetDateTime(Object value) convertToOffsetTime(Object value) convertToZonedDateTime(Object value) static TemporalConverterDefaultget()
-
Method Details
-
convertToInstant
-
convertToLocalDateTime
- Parameters:
value- theObjectto convert. Most likely aTemporalbut may also be something else.- Returns:
- the converted
LocalDateTimeif conversion was possible. Otherwisenull.
-
convertToOffsetDateTime
- Parameters:
value- theObjectto convert. Most likely aTemporalbut may also be something else.- Returns:
- the converted
OffsetDateTimeif conversion was possible. Otherwisenull.
-
convertToZonedDateTime
- Parameters:
value- theObjectto convert. Most likely aTemporalbut may also be something else.- Returns:
- the converted
ZonedDateTimeif conversion was possible. Otherwisenull.
-
convertToLocalDate
-
convertToLocalTime
-
convertToOffsetTime
- Parameters:
value- theObjectto convert. Most likely aTemporalbut may also be something else.- Returns:
- the converted
OffsetTimeif conversion was possible. Otherwisenull.
-
convertAndEvaluate
- Specified by:
convertAndEvaluatein interfaceTemporalConverter- Type Parameters:
T- type of the result.- Parameters:
temporal1- the first temporal value (with date and/or time).temporal2- the second temporal value (with date and/or time).function- the function to apply on the two given temporal values after assuring they are of same type. This method will therefore convert on of the given temporal values so it has the same type as the other one.- Returns:
- the result of the given
BiFunctionwith the given temporal values applied ornullif the a temporal value has an unknown or unsupported type.
-
get
- Returns:
- the singleton instance.
-