Interface NodeModelSupport<T>
-
- Type Parameters:
T
- the type of the supportedNodeModel
- All Known Subinterfaces:
HierarchicalConfiguration<T>
,InMemoryNodeModelSupport
- All Known Implementing Classes:
AbstractHierarchicalConfiguration
,AbstractYAMLBasedConfiguration
,BaseHierarchicalConfiguration
,CombinedConfiguration
,DynamicCombinedConfiguration
,INIConfiguration
,JSONConfiguration
,PatternSubtreeConfigurationWrapper
,PropertyListConfiguration
,SubnodeConfiguration
,XMLConfiguration
,XMLPropertyListConfiguration
,YAMLConfiguration
public interface NodeModelSupport<T>
An interface to be implemented by objects that support a
NodeModel
.This interface defines a single method for querying a
NodeModel
.- Since:
- 2.0
- Version:
- $Id: NodeModelSupport.java 1624601 2014-09-12 18:04:36Z oheger $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeModel<T>
getNodeModel()
Returns theNodeModel
supported by this object.
-