Class NodeAttributeRepository
java.lang.Object
com.vladsch.flexmark.ext.attributes.internal.NodeAttributeRepository
- All Implemented Interfaces:
Map<Node,
ArrayList<AttributesNode>>
-
Nested Class Summary
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
boolean
containsKey
(Object key) boolean
containsValue
(Object value) @NotNull Set
<Map.Entry<Node, ArrayList<AttributesNode>>> entrySet()
boolean
isEmpty()
keySet()
put
(Node key, AttributesNode value) put
(Node key, ArrayList<AttributesNode> value) void
putAll
(@NotNull Map<? extends Node, ? extends ArrayList<AttributesNode>> m) int
size()
@NotNull Collection
<ArrayList<AttributesNode>> values()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
nodeAttributesHashMap
-
-
Constructor Details
-
NodeAttributeRepository
-
-
Method Details
-
getDataKey
-
getKeepDataKey
-
size
public int size()- Specified by:
size
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
containsKey
- Specified by:
containsKey
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
containsValue
- Specified by:
containsValue
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
get
- Specified by:
get
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
put
- Specified by:
put
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
put
-
remove
- Specified by:
remove
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
putAll
- Specified by:
putAll
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
clear
public void clear()- Specified by:
clear
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
keySet
- Specified by:
keySet
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
values
- Specified by:
values
in interfaceMap<Node,
ArrayList<AttributesNode>>
-
entrySet
- Specified by:
entrySet
in interfaceMap<Node,
ArrayList<AttributesNode>>
-