Package ch.njol.skript.config
Class EntryNode
java.lang.Object
ch.njol.skript.config.Node
ch.njol.skript.config.EntryNode
- All Implemented Interfaces:
NodeNavigator
,AnyNamed
,AnyProvider
,Iterable<Node>
,Map.Entry<String,
,String> Validated
-
Field Summary
-
Constructor Summary
ConstructorDescriptionEntryNode
(String key, String value, SectionNode parent) EntryNode
(String key, String value, String comment, SectionNode parent, int lineNum) -
Method Summary
Methods inherited from class ch.njol.skript.config.Node
debug, equals, getComment, getConfig, getCurrentNode, getIndentation, getLine, getParent, getPath, getPathSteps, hashCode, invalidate, isVoid, move, name, remove, rename, save, save, splitLine, splitLine, toString, valid
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.njol.skript.lang.util.common.AnyNamed
setName, supportsNameChange
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface ch.njol.skript.config.NodeNavigator
getNodeAt, getNodeAt, getValue, iterator
-
Constructor Details
-
EntryNode
-
EntryNode
-
-
Method Details
-
getKey
Description copied from class:Node
Key of this node. null for empty or invalid nodes, and the config's main node. -
getValue
-
setValue
-
get
Description copied from interface:NodeNavigator
Obtains the immediate child node at this (direct) key. If this does not represent a node that can have children (e.g. anEntryNode
) then it must returnnull
.- Specified by:
get
in interfaceNodeNavigator
- Parameters:
step
- The name of the node- Returns:
- The child node if one is present, otherwise
null
-