Uses of Interface
org.smooks.api.TypedKey
-
Packages that use TypedKey Package Description org.smooks.api org.smooks.api.management org.smooks.engine org.smooks.engine.delivery.sax.ng.bridge org.smooks.engine.memento org.smooks.engine.resource.config.loader.xml.extension Smooks Configuration Extension Classes.org.smooks.engine.resource.visitor.dom org.smooks.engine.resource.visitor.smooks org.smooks.engine.xml XML helper classes.org.smooks.io org.smooks.io.payload Smooks filtering "payload" specializations. -
-
Uses of TypedKey in org.smooks.api
Classes in org.smooks.api that implement TypedKey Modifier and Type Class Description static class
TypedKey.DefaultTypedKey<T>
Methods in org.smooks.api that return TypedKey Modifier and Type Method Description static <T> TypedKey<T>
TypedKey. of()
Constructs aTypedKey
with a random UUID for its name.static <T> TypedKey<T>
TypedKey. of(String name)
Constructs aTypedKey
with 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> T
TypedMap. get(TypedKey<T> key)
Returns the value to which the specified key is mapped, ornull
if this map contains no mapping for the key.<T> T
TypedMap. getOrDefault(TypedKey<T> key, T defaultValue)
Returns the value to which the specified key is mapped, ordefaultValue
if this map contains no mapping for the key.<T> T
Registry. lookup(TypedKey<T> key)
Looks up a registered object by its typed key.<T> void
TypedMap. put(TypedKey<T> key, T value)
Associates the specified value with the specified key in this map.<T> void
TypedMap. 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.management
Fields in org.smooks.api.management declared as TypedKey Modifier and Type Field Description static TypedKey<InstrumentationResource>
InstrumentationResource. INSTRUMENTATION_RESOURCE_TYPED_KEY
-
Uses of TypedKey in org.smooks.engine
Methods in org.smooks.engine that return types with arguments of type TypedKey Modifier and Type Method Description Map<TypedKey<Object>,Object>
DefaultExecutionContext. getAll()
Methods in org.smooks.engine with parameters of type TypedKey Modifier and Type Method Description <T> T
DefaultExecutionContext. get(TypedKey<T> key)
<T> T
DefaultExecutionContext. getOrDefault(TypedKey<T> key, T value)
<T> T
DefaultRegistry. lookup(TypedKey<T> key)
<T> void
DefaultExecutionContext. put(TypedKey<T> key, T value)
<T> void
DefaultExecutionContext. remove(TypedKey<T> key)
-
Uses of TypedKey in org.smooks.engine.delivery.sax.ng.bridge
Methods in org.smooks.engine.delivery.sax.ng.bridge that return TypedKey Modifier and Type Method Description TypedKey<Node>
Bridge. getSourceKey()
Gets the execution context key which maps to the node representing the event. -
Uses of TypedKey in org.smooks.engine.memento
Fields in org.smooks.engine.memento declared as TypedKey Modifier and Type Field Description protected TypedKey<?>
VisitorMemento. typedKey
Methods in org.smooks.engine.memento that return TypedKey Modifier and Type Method Description TypedKey<?>
VisitorMemento. getTypedKey()
Constructors in org.smooks.engine.memento with parameters of type TypedKey Constructor Description VisitorMemento(Fragment<?> fragment, Visitor visitor, TypedKey<?> typedKey)
VisitorMemento(Fragment<?> fragment, Visitor visitor, TypedKey<?> typedKey, T state)
-
Uses of TypedKey in org.smooks.engine.resource.config.loader.xml.extension
Fields in org.smooks.engine.resource.config.loader.xml.extension declared as TypedKey Modifier and Type Field Description static TypedKey<ExtensionContext>
ExtensionContext. EXTENSION_CONTEXT_TYPED_KEY
-
Uses of TypedKey in org.smooks.engine.resource.visitor.dom
Fields in org.smooks.engine.resource.visitor.dom declared as TypedKey Modifier and Type Field Description static TypedKey<DOMModel>
DOMModel. DOM_MODEL_TYPED_KEY
-
Uses of TypedKey in org.smooks.engine.resource.visitor.smooks
Fields in org.smooks.engine.resource.visitor.smooks declared as TypedKey Modifier and Type Field Description protected static TypedKey<DocumentBuilder>
NestedSmooksVisitor. CACHED_DOCUMENT_BUILDER_TYPED_KEY
protected static TypedKey<ExecutionContext>
NestedSmooksVisitor. NESTED_EXECUTION_CONTEXT_MEMENTO_TYPED_KEY
protected static TypedKey<Node>
NestedSmooksVisitor. SOURCE_BRIDGE_TYPED_KEY
-
Uses of TypedKey in org.smooks.engine.xml
Fields in org.smooks.engine.xml declared as TypedKey Modifier and Type Field Description static TypedKey<NamespaceDeclarationStack>
NamespaceManager. NAMESPACE_DECLARATION_STACK_TYPED_KEY
-
Uses of TypedKey in org.smooks.io
Fields in org.smooks.io declared as TypedKey Modifier and Type Field Description static TypedKey<Writer>
Stream. STREAM_WRITER_TYPED_KEY
-
Uses of TypedKey in org.smooks.io.payload
Fields in org.smooks.io.payload declared as TypedKey Modifier and Type Field Description static TypedKey<Result[]>
FilterResult. RESULTS_TYPED_KEY
static TypedKey<Source>
FilterSource. SOURCE_TYPED_KEY
-