ljacqu

Results 74 issues of ljacqu

Offer a functionality to create a YamlFileReader from a String rather than a File/Path. Interesting for testing or for other usages where the YAML comes from a source other than...

`Optional` properties are skipped in the export but it might be desired to have them as `null` in the config so that the user is aware that these properties even...

The class `BeanPropertyComments` has a field `uuid` to keep track of unique comments: if a UUID is set, we can keep track whether we've already set this comment in `ExportContextImpl`...

beanmapper

Some Wiki pages or code have "Javadoc" or "JavaDoc". Find out what the "preferred" spelling is and apply it consistently everywhere (Wiki + code).

docs

## To do - Introduce a `MapPropertyType`, similar to `ListPropertyType` etc. - Make sure it can be created in different ways as in `CollectionPropertyType`: allow to supply a custom `PropertyType`...

good-first-issue

Currently, `OptionalProperty` has the following constructors: ```java public OptionalProperty(@NotNull Property baseProperty) { this.baseProperty = baseProperty; this.defaultValue = Optional.empty(); } public OptionalProperty(@NotNull Property baseProperty, @NotNull T defaultValue) { this.baseProperty = baseProperty;...

As seen in the PR for #383, extending `SetProperty` for `EnumSetPropertyType` has problems: ```java public EnumSetProperty(String path, Class enumClass, EnumSet defaultValue) { // Compile error, EnumSetProperty must be unchecked super(new...

architecture

Not sure about this yet, but it may make sense to have out-of-the-box support for LocalDate and LocalDateTime. (And LocalTime?) ### To do - Introduce a PropertyType for the respective...

good-first-issue

Continuation of #480: It's not really possible to provide another ConvertErrorRecorder implementation without overriding a lot of methods. Find a way so that the creation of error recorders can be...

architecture