Interface NavigationEntryConverterRegistry
-
- All Known Implementing Classes:
DefaultNavigationEntryConverterRegistry
public interface NavigationEntryConverterRegistryRegistry that stores a collection ofNavigationEntryItemModelConverter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Optional<NavigationEntryItemModelConverter>getNavigationEntryItemModelConverter(java.lang.String itemType)Get a specificNavigationEntryItemModelConverterby its itemType.java.util.Optional<java.util.List<java.lang.String>>getSupportedItemTypes()Deprecated, for removal: This API element is subject to removal in a future version.since 1811.
-
-
-
Method Detail
-
getNavigationEntryItemModelConverter
java.util.Optional<NavigationEntryItemModelConverter> getNavigationEntryItemModelConverter(java.lang.String itemType)
Get a specificNavigationEntryItemModelConverterby its itemType.- Parameters:
itemType- the itemTypeAbstractItemModel.getItemtype()of the element to retrieve from the registry- Returns:
- an
Optionalelement matching the itemType
-
getSupportedItemTypes
@Deprecated(since="1811", forRemoval=true) java.util.Optional<java.util.List<java.lang.String>> getSupportedItemTypes()Deprecated, for removal: This API element is subject to removal in a future version.since 1811.Get a list of supported navigation entry item types.- Returns:
- an
Optionallist of item types supported by this registry.
-
-