Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ default double getDouble(String name, double defaultValue) {
<T> List<T> getScalarList(String name, Class<T> scalarType);

/**
* Returns a {@link List} configuration property. Entries which are not strings are converted to
* their string representation.
* Returns a {@link List} configuration property. Empty values and values which do not map to the
* {@code scalarType} will be removed.
*
* @param name the property name
* @param scalarType the scalar type, one of {@link String}, {@link Boolean}, {@link Long} or
Expand All @@ -183,7 +183,7 @@ default <T> List<T> getScalarList(String name, Class<T> scalarType, List<T> defa
DeclarativeConfigProperties getStructured(String name);

/**
* Returns a list of {@link DeclarativeConfigProperties} configuration property.
* Returns a {@link DeclarativeConfigProperties} configuration property.
*
* @return a map-valued configuration property, or {@code defaultValue} if {@code name} has not
* been configured or is not a mapping
Expand Down
Loading