Package org.aksw.commons.index.util
Interface CMapSupplier<X>
-
- All Superinterfaces:
MapSupplier
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CMapSupplier<X> extends MapSupplier
Helper interface for creating new map instances with automatically inferred types- Author:
- Claus Stadler 11/09/2020
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <X extends Map<?,?>>
CMapSupplier<X>cast()<K,V>
CMap<K,V,X>get()-
Methods inherited from interface org.aksw.commons.index.util.MapSupplier
wrapAsCMap
-
-
-
-
Method Detail
-
get
<K,V> CMap<K,V,X> get()
- Specified by:
getin interfaceMapSupplier
-
cast
default <X extends Map<?,?>> CMapSupplier<X> cast()
-
-