Interface MetaDataNode
-
public interface MetaDataNodeRepresents a single metadata definition in a hierarchical tree of meta data as retrieved byMetaDataRetriever
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetaDataNodeadd(MetaDataNode child)MetaDataNodegetChildByPath(java.lang.String relPath)java.util.Iterator<MetaDataNode>getChildren()java.lang.StringgetId()java.lang.StringgetLabel()OptionsgetOptions()java.lang.StringgetPath()java.lang.StringgetType()booleanhasOptions()
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getPath
java.lang.String getPath()
-
getLabel
java.lang.String getLabel()
-
getType
java.lang.String getType()
-
add
MetaDataNode add(MetaDataNode child)
-
getChildren
java.util.Iterator<MetaDataNode> getChildren()
-
getChildByPath
MetaDataNode getChildByPath(java.lang.String relPath)
-
hasOptions
boolean hasOptions()
-
getOptions
Options getOptions()
-
-