Interface IDataAdaptor
-
- All Superinterfaces:
IEntityAdaptor
public interface IDataAdaptor extends IEntityAdaptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.Iterable<IDataAdaptor>
children()
Returns child data sets of this data set.java.lang.Iterable<IDataAdaptor>
childrenOfType(java.lang.String typeCodeRegexp)
Returns child data sets of this data set.java.lang.Iterable<IDataAdaptor>
contained()
Returns contained data sets of this data set.java.lang.Iterable<IDataAdaptor>
containedOfType(java.lang.String typeCodeRegexp)
Returns contained data sets of this data set.IDataAdaptor
container()
Deprecated.Usecontainers()
java.lang.Iterable<IDataAdaptor>
containers()
Returns the containers data sets of this data set.IExperimentAdaptor
experiment()
Returns the experiment of this data set, or null if not exists.java.lang.Iterable<IDataAdaptor>
parents()
Returns parent data sets of this data set.java.lang.Iterable<IDataAdaptor>
parentsOfType(java.lang.String typeCodeRegexp)
Returns parent data sets of this data set.ISampleAdaptor
sample()
Returns the sample of this data set, or null if not exists.-
Methods inherited from interface ch.systemsx.cisd.openbis.generic.shared.hotdeploy_plugins.api.IEntityAdaptor
code, properties, property, propertyRendered, propertyValue
-
-
-
-
Method Detail
-
experiment
IExperimentAdaptor experiment()
Returns the experiment of this data set, or null if not exists.
-
sample
ISampleAdaptor sample()
Returns the sample of this data set, or null if not exists.
-
parents
java.lang.Iterable<IDataAdaptor> parents()
Returns parent data sets of this data set.
-
parentsOfType
java.lang.Iterable<IDataAdaptor> parentsOfType(java.lang.String typeCodeRegexp)
Returns parent data sets of this data set. Types of the returned parent data sets must match the specified regular expression.
-
children
java.lang.Iterable<IDataAdaptor> children()
Returns child data sets of this data set.
-
childrenOfType
java.lang.Iterable<IDataAdaptor> childrenOfType(java.lang.String typeCodeRegexp)
Returns child data sets of this data set. Types of the returned child data sets must match the specified regular expression.
-
container
@Deprecated IDataAdaptor container()
Deprecated.Usecontainers()
Returns the container data set, or null if not exists.
-
containers
java.lang.Iterable<IDataAdaptor> containers()
Returns the containers data sets of this data set.
-
contained
java.lang.Iterable<IDataAdaptor> contained()
Returns contained data sets of this data set.
-
containedOfType
java.lang.Iterable<IDataAdaptor> containedOfType(java.lang.String typeCodeRegexp)
Returns contained data sets of this data set. Types of the returned contained data sets must match the specified regular expression.
-
-