Package org.spongepowered.configurate
Interface ConfigurationVisitor.Stateless<E extends Exception>
- All Superinterfaces:
ConfigurationVisitor<Void,Void, E>
- Enclosing interface:
- ConfigurationVisitor<S,
T, E extends Exception>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface ConfigurationVisitor.Stateless<E extends Exception>
extends ConfigurationVisitor<Void,Void,E>
Stateless specialization of visitors, where both the state and terminal
type are Void.
- Since:
- 4.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.spongepowered.configurate.ConfigurationVisitor
ConfigurationVisitor.Safe<S,T>, ConfigurationVisitor.Stateless<E extends Exception> -
Method Summary
Modifier and TypeMethodDescriptiondefault voidbeginVisit(ConfigurationNode node) Called at the beginning of the visit with a state object created.default voidbeginVisit(ConfigurationNode node, Void state) Called at the beginning of the visit with a state object created.default voidendVisit()Called after every node has been visited, to allow for cleanup and validation.default VoidCalled after every node has been visited, to allow for cleanup and validation.default voidCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for list nodes.default voidenterListNode(ConfigurationNode node, Void state) Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for list nodes.default voidCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for mapping nodes.default voidenterMappingNode(ConfigurationNode node, Void state) Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for mapping nodes.voidenterNode(ConfigurationNode node) Called once per node, for every node.default voidenterNode(ConfigurationNode node, Void state) Called once per node, for every node.default voidCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for scalar nodes.default voidenterScalarNode(ConfigurationNode node, Void state) Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for scalar nodes.default voidCalled for a list node after the node and any of its children have been visited.default voidexitListNode(ConfigurationNode node, Void state) Called for a list node after the node and any of its children have been visited.default voidCalled for a mapping node after the node and any of its children have been visited.default voidexitMappingNode(ConfigurationNode node, Void state) Called for a list node after the node and any of its children have been visited.default VoidnewState()Called to provide a state object if a visit is initiated without one already existing.
-
Method Details
-
newState
Description copied from interface:ConfigurationVisitorCalled to provide a state object if a visit is initiated without one already existing. -
beginVisit
Description copied from interface:ConfigurationVisitorCalled at the beginning of the visit with a state object created.- Specified by:
beginVisitin interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- the root nodestate- the state- Throws:
E- when thrown by implementation
-
beginVisit
Called at the beginning of the visit with a state object created.- Parameters:
node- the root node- Throws:
E- as required by implementation- Since:
- 4.0.0
-
enterNode
Description copied from interface:ConfigurationVisitorCalled once per node, for every node. -
enterNode
Called once per node, for every node.- Parameters:
node- the current node- Throws:
E- as required by implementation- Since:
- 4.0.0
-
enterMappingNode
Description copied from interface:ConfigurationVisitorCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for mapping nodes.- Specified by:
enterMappingNodein interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- current nodestate- provided state- Throws:
E- when thrown by implementation
-
enterMappingNode
Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for mapping nodes.- Parameters:
node- current node- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-
enterListNode
Description copied from interface:ConfigurationVisitorCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for list nodes.- Specified by:
enterListNodein interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- current nodestate- provided state- Throws:
E- when thrown by implementation
-
enterListNode
Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for list nodes.- Parameters:
node- current node- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-
enterScalarNode
Description copied from interface:ConfigurationVisitorCalled afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for scalar nodes.- Specified by:
enterScalarNodein interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- current nodestate- provided state- Throws:
E- when thrown by implementation
-
enterScalarNode
Called afterConfigurationVisitor.enterNode(ConfigurationNode, Object)for scalar nodes.- Parameters:
node- current node- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-
exitMappingNode
Description copied from interface:ConfigurationVisitorCalled for a list node after the node and any of its children have been visited.- Specified by:
exitMappingNodein interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- the node that has been visitedstate- provided state- Throws:
E- when thrown by implementation
-
exitMappingNode
Called for a mapping node after the node and any of its children have been visited.- Parameters:
node- the node that has been visited- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-
exitListNode
Description copied from interface:ConfigurationVisitorCalled for a list node after the node and any of its children have been visited.- Specified by:
exitListNodein interfaceConfigurationVisitor<Void,Void, E extends Exception> - Parameters:
node- the node that has been visitedstate- provided state- Throws:
E- when thrown by implementation
-
exitListNode
Called for a list node after the node and any of its children have been visited.- Parameters:
node- the node that has been visited- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-
endVisit
Description copied from interface:ConfigurationVisitorCalled after every node has been visited, to allow for cleanup and validation. -
endVisit
Called after every node has been visited, to allow for cleanup and validation.- Throws:
E- when thrown by implementation- Since:
- 4.0.0
-