tuweni / org.apache.tuweni.config / SchemaBuilder / addListOfMap

addListOfMap

fun addListOfMap(key: String!, @Nullable defaultValue: MutableList<MutableMap<String!, Any!>!>?, @Nullable description: String?, @Nullable validator: PropertyValidator<in MutableList<MutableMap<String!, Any!>!>!>?): SchemaBuilder! (source)

Add a list-of-maps property to the schema.

Even if no validator is provided, the schema will validate that the configuration property, if present, contains a list of maps without any null values.

If a defaultValue is provided, then the provided validator, if any, will only be invoked if the value is present (i.e. it will not be provided a null value to validate).

Parameters

key - String!: The configuration property key.

defaultValue - MutableList<MutableMap<String!, Any!>!>?: A default value for the property or null if no default is provided.

description - String?: The description to associate with this property, or null if no documentation is provided.

validator - PropertyValidator<in MutableList<MutableMap<String!, Any!>!>!>?: A validator for the property, or null if no validator is provided.

Exceptions

IllegalArgumentException - If the key cannot be parsed.

Return
SchemaBuilder!: This builder.