static <T> ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.builder(Class<T> clazz) |
Create a new builder for a context variable type converter.
|
ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.Builder.fromObject(Function<Object,T> fromObject) |
Set the function to convert an object to the type.
|
ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.Builder.fromPromptString(Function<String,T> fromPromptString) |
Set the function to convert a prompt string to the type.
|
ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.Builder.proxyGlobalType() |
Make this builder a proxy for another type converter.
|
ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.Builder.proxyType(ContextVariableTypeConverter<T> proxy) |
Make this builder a proxy for another type converter.
|
ContextVariableTypeConverter.Builder<T> |
ContextVariableTypeConverter.Builder.toPromptString(Function<T,String> toPromptString) |
Set the function to convert the type to a prompt string.
|