Interface OptionalPropertyContext<T>
-
public interface OptionalPropertyContext<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OptionalConfigurationProperty<T>
build()
OptionalPropertyContext<List<T>>
multivalued()
DefaultedPropertyContext<T>
withDefault(Supplier<T> defaultValueSupplier)
DefaultedPropertyContext<T>
withDefault(T defaultValue)
-
-
-
Method Detail
-
multivalued
OptionalPropertyContext<List<T>> multivalued()
-
withDefault
DefaultedPropertyContext<T> withDefault(T defaultValue)
-
withDefault
DefaultedPropertyContext<T> withDefault(Supplier<T> defaultValueSupplier)
-
build
OptionalConfigurationProperty<T> build()
-
-