Package dev.orne.beans.converters
Class LocalDateTimeConverter
java.lang.Object
org.apache.commons.beanutils.converters.AbstractConverter
dev.orne.beans.converters.AbstractDateTimeConverter
dev.orne.beans.converters.LocalDateTimeConverter
- All Implemented Interfaces:
org.apache.commons.beanutils.Converter
@API(status=STABLE,
since="0.1")
public class LocalDateTimeConverter
extends AbstractDateTimeConverter
Implementation of
Converter that converts LocalDateTime instances
to and from String using ISO-8601 as String
representation by default.- Since:
- 0.1
- Version:
- 1.0, 2020-05
- Author:
- (w) Iker Hernaez
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance that throws aConversionExceptionif an error occurs, using ISO-8601 as default conversion format.LocalDateTimeConverter(@NotNull DateTimeFormatter formatter) Creates a new instance that throws aConversionExceptionif an error occurs.LocalDateTimeConverter(@NotNull DateTimeFormatter formatter, LocalDateTime defaultValue) Creates a new instance that returns a default value if an error occurs.LocalDateTimeConverter(LocalDateTime defaultValue) Creates a new instance that returns a default value if an error occurs, using ISO-8601 as default conversion format. -
Method Summary
Modifier and TypeMethodDescriptionprotected <T extends TemporalAccessor>
TfromTemporalAccessor(@NotNull Class<T> type, @NotNull TemporalAccessor value) Converts theTemporalAccessorpassed as argument to the specified type.protected @NotNull Class<?>Methods inherited from class dev.orne.beans.converters.AbstractDateTimeConverter
addParsers, addParsers, convertToString, convertToType, getFormatter, getLogger, getParsers, parse, parseString, setParsers, setParsersMethods inherited from class org.apache.commons.beanutils.converters.AbstractConverter
conversionException, convert, convertArray, getDefault, handleError, handleMissing, isUseDefault, setDefaultValue, toString
-
Constructor Details
-
LocalDateTimeConverter
public LocalDateTimeConverter()Creates a new instance that throws aConversionExceptionif an error occurs, using ISO-8601 as default conversion format. -
LocalDateTimeConverter
Creates a new instance that returns a default value if an error occurs, using ISO-8601 as default conversion format.- Parameters:
defaultValue- The default value to be returned if the value to be converted is missing or an error occurs converting the value
-
LocalDateTimeConverter
Creates a new instance that throws aConversionExceptionif an error occurs.- Parameters:
formatter- The temporal value formatter and default parser
-
LocalDateTimeConverter
public LocalDateTimeConverter(@NotNull @NotNull DateTimeFormatter formatter, LocalDateTime defaultValue) Creates a new instance that returns a default value if an error occurs.- Parameters:
formatter- The temporal value formatter and default parserdefaultValue- The default value to be returned if the value to be converted is missing or an error occurs converting the value
-
-
Method Details
-
getDefaultType
- Specified by:
getDefaultTypein classAbstractDateTimeConverter
-
fromTemporalAccessor
protected <T extends TemporalAccessor> T fromTemporalAccessor(@NotNull @NotNull Class<T> type, @NotNull @NotNull TemporalAccessor value) Converts theTemporalAccessorpassed as argument to the specified type.- Specified by:
fromTemporalAccessorin classAbstractDateTimeConverter- Type Parameters:
T- The expected type ofTemporalAccessor- Parameters:
type- The expected type ofTemporalAccessorvalue- TheTemporalAccessorto convert to the expected type- Returns:
- The converted
TemporalAccessorof the expected type
-