Interface AddOnValueProviderRegistry
-
- All Known Implementing Classes:
DefaultAddOnValueProviderRegistry
public interface AddOnValueProviderRegistryRegistry to access value providers by the name of the AddOn that defines them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<AddOnValueProvider>get(java.lang.String addOnName)Returns the value provider for the given AddOn name.
-
-
-
Method Detail
-
get
java.util.Optional<AddOnValueProvider> get(java.lang.String addOnName)
Returns the value provider for the given AddOn name.- Parameters:
addOnName- the name of the AddOn extension- Returns:
- an
Optionalthat either contains the value provider or is empty if no provider exists for the given AddOn name
-
-