Uses of Interface
org.smooks.api.TypedKey
-
Packages that use TypedKey Package Description org.smooks.api org.smooks.api.io org.smooks.api.management -
-
Uses of TypedKey in org.smooks.api
Classes in org.smooks.api that implement TypedKey Modifier and Type Class Description static classTypedKey.DefaultTypedKey<T>Methods in org.smooks.api that return TypedKey Modifier and Type Method Description static <T> TypedKey<T>TypedKey. of()Constructs aTypedKeywith a random UUID for its name.static <T> TypedKey<T>TypedKey. of(String name)Constructs aTypedKeywith a custom name.Methods in org.smooks.api that return types with arguments of type TypedKey Modifier and Type Method Description Map<TypedKey<Object>,Object>TypedMap. getAll()Returns all the key-value pairs as aMap.Methods in org.smooks.api with parameters of type TypedKey Modifier and Type Method Description <T> TTypedMap. get(TypedKey<T> key)Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.<T> TTypedMap. getOrDefault(TypedKey<T> key, T defaultValue)Returns the value to which the specified key is mapped, ordefaultValueif this map contains no mapping for the key.<T> TRegistry. lookup(TypedKey<T> key)Looks up a registered object by its typed key.<T> voidTypedMap. put(TypedKey<T> key, T value)Associates the specified value with the specified key in this map.<T> voidTypedMap. remove(TypedKey<T> key)Removes the mapping for a key from this map if it is present (optional operation). -
Uses of TypedKey in org.smooks.api.io
Fields in org.smooks.api.io declared as TypedKey Modifier and Type Field Description static TypedKey<List<Sink>>Sink. SINKS_TYPED_KEYstatic TypedKey<Source>Source. SOURCE_TYPED_KEY -
Uses of TypedKey in org.smooks.api.management
Fields in org.smooks.api.management declared as TypedKey Modifier and Type Field Description static TypedKey<InstrumentationResource>InstrumentationResource. INSTRUMENTATION_RESOURCE_TYPED_KEY
-