Uses of Class
org.commonmark.node.DefinitionMap
-
Packages that use DefinitionMap Package Description org.commonmark.ext.footnotes.internal org.commonmark.internal org.commonmark.node AST node types (seeNode
) and visitors (seeAbstractVisitor
)org.commonmark.parser.block Types for extending block parsing -
-
Uses of DefinitionMap in org.commonmark.ext.footnotes.internal
Fields in org.commonmark.ext.footnotes.internal declared as DefinitionMap Modifier and Type Field Description private DefinitionMap<FootnoteDefinition>
FootnoteHtmlNodeRenderer. definitionMap
All definitions (even potentially unused ones), for looking up referencesprivate DefinitionMap<FootnoteDefinition>
FootnoteHtmlNodeRenderer.DefinitionVisitor. definitions
Methods in org.commonmark.ext.footnotes.internal that return types with arguments of type DefinitionMap Modifier and Type Method Description java.util.List<DefinitionMap<?>>
FootnoteBlockParser. getDefinitions()
-
Uses of DefinitionMap in org.commonmark.internal
Fields in org.commonmark.internal with type parameters of type DefinitionMap Modifier and Type Field Description private java.util.Map<java.lang.Class<?>,DefinitionMap<?>>
Definitions. definitionsByType
Methods in org.commonmark.internal that return DefinitionMap Modifier and Type Method Description private <V> DefinitionMap<V>
Definitions. getMap(java.lang.Class<V> type)
Methods in org.commonmark.internal that return types with arguments of type DefinitionMap Modifier and Type Method Description java.util.List<DefinitionMap<?>>
ParagraphParser. getDefinitions()
Methods in org.commonmark.internal with parameters of type DefinitionMap Modifier and Type Method Description <D> void
Definitions. addDefinitions(DefinitionMap<D> definitionMap)
-
Uses of DefinitionMap in org.commonmark.node
Methods in org.commonmark.node with parameters of type DefinitionMap Modifier and Type Method Description void
DefinitionMap. addAll(DefinitionMap<D> that)
-
Uses of DefinitionMap in org.commonmark.parser.block
Methods in org.commonmark.parser.block that return types with arguments of type DefinitionMap Modifier and Type Method Description java.util.List<DefinitionMap<?>>
AbstractBlockParser. getDefinitions()
java.util.List<DefinitionMap<?>>
BlockParser. getDefinitions()
Return definitions parsed by this parser.
-