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(String relPath)Iterator<MetaDataNode>getChildren()StringgetId()StringgetLabel()OptionsgetOptions()StringgetPath()StringgetType()booleanhasOptions()
-
-
-
Method Detail
-
getId
String getId()
-
getPath
String getPath()
-
getLabel
String getLabel()
-
getType
String getType()
-
add
MetaDataNode add(MetaDataNode child)
-
getChildren
Iterator<MetaDataNode> getChildren()
-
getChildByPath
MetaDataNode getChildByPath(String relPath)
-
hasOptions
boolean hasOptions()
-
getOptions
Options getOptions()
-
-