Interface IDatasetLocationNode
-
- All Known Implementing Classes:
DatasetLocationNode
,ExternalDataLocationNode
public interface IDatasetLocationNode
Stores information about a location of a data set and its components.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<IDatasetLocationNode>
getComponents()
Returns a collection of component locations.IDatasetLocation
getLocation()
Returns the data set location.boolean
isContainer()
Returns true if the data set is a container.
-
-
-
Method Detail
-
getLocation
IDatasetLocation getLocation()
Returns the data set location. Never returns null.
-
isContainer
boolean isContainer()
Returns true if the data set is a container.
-
getComponents
java.util.Collection<IDatasetLocationNode> getComponents()
Returns a collection of component locations. For a data set that is not a container always returns an empty collection. Never returns null.
-
-