ConfigOptions.TypedConfigOptionBuilder<Boolean> |
ConfigOptions.OptionBuilder.booleanType() |
Defines that the value of the option should be of Boolean type.
|
ConfigOptions.TypedConfigOptionBuilder<Double> |
ConfigOptions.OptionBuilder.doubleType() |
Defines that the value of the option should be of Double type.
|
ConfigOptions.TypedConfigOptionBuilder<java.time.Duration> |
ConfigOptions.OptionBuilder.durationType() |
Defines that the value of the option should be of Duration type.
|
<T extends Enum<T>> ConfigOptions.TypedConfigOptionBuilder<T> |
ConfigOptions.OptionBuilder.enumType(Class<T> enumClass) |
Defines that the value of the option should be of Enum type.
|
ConfigOptions.TypedConfigOptionBuilder<Float> |
ConfigOptions.OptionBuilder.floatType() |
Defines that the value of the option should be of Float type.
|
ConfigOptions.TypedConfigOptionBuilder<Integer> |
ConfigOptions.OptionBuilder.intType() |
Defines that the value of the option should be of Integer type.
|
ConfigOptions.TypedConfigOptionBuilder<Long> |
ConfigOptions.OptionBuilder.longType() |
Defines that the value of the option should be of Long type.
|
ConfigOptions.TypedConfigOptionBuilder<Map<String,String>> |
ConfigOptions.OptionBuilder.mapType() |
Defines that the value of the option should be a set of properties, which can be
represented as Map<String, String>.
|
ConfigOptions.TypedConfigOptionBuilder<MemorySize> |
ConfigOptions.OptionBuilder.memoryType() |
Defines that the value of the option should be of MemorySize type.
|
ConfigOptions.TypedConfigOptionBuilder<String> |
ConfigOptions.OptionBuilder.stringType() |
Defines that the value of the option should be of String type.
|