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.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 java.util.Optional<java.util.List<java.lang.String>> getSupportedItemTypes()
Deprecated.since 1811.Get a list of supported navigation entry item types.- Returns:
- an
Optionallist of item types supported by this registry.
-
-