Package io.quarkus.qute
Interface Mapper
public interface Mapper
Maps keys to values in a similar way to
Map. The difference is that a mapper could be stateless, i.e. the
lookup may be performed dynamically.- See Also:
-
Method Summary
-
Method Details
-
get
-
getAsync
-
appliesTo
- Parameters:
key-- Returns:
trueif the mapper should be applied to the specified key
-
mappedKeys
The returned set may be a subset of the final set of all mapped keys.- Returns:
- the set of known mapped keys
-
wrap
- Parameters:
map-- Returns:
- a mapper that wraps the given map
-