Uses of Class
com.dnanexus.DXDataObject
-
Packages that use DXDataObject Package Description com.dnanexus Provides low- and high-level bindings to the DNAnexus Platform. -
-
Uses of DXDataObject in com.dnanexus
Classes in com.dnanexus with type parameters of type DXDataObject Modifier and Type Class Description protected static classDXDataObject.Builder<T extends DXDataObject.Builder<T,U>,U extends DXDataObject>Abstract builder class for creating a new data object of classU.static classDXSearch.FindDataObjectsRequestBuilder<T extends DXDataObject>Builder class for formulatingfindDataObjectsqueries and executing them.static classDXSearch.FindDataObjectsResult<T extends DXDataObject>The set of data objects that matched afindDataObjectsquery.Subclasses of DXDataObject in com.dnanexus Modifier and Type Class Description classDXAppletAn applet (an executable data object).classDXFileA file (an opaque sequence of bytes).classDXRecordA record (the minimal data object class).classDXWorkflowA workflow.Methods in com.dnanexus that return DXDataObject Modifier and Type Method Description DXDataObjectDXDataObject. close()Closes the data object.DXDataObjectDXDataObject. closeAndWait()Closes the data object and waits until the close operation is complete.static DXDataObjectDXDataObject. getInstance(String objectId)Returns aDXDataObjectcorresponding to an existing object with the specified ID.static DXDataObjectDXDataObject. getInstance(String objectId, DXContainer project)Returns aDXDataObjectcorresponding to an existing object with the specified ID in the specified project or container.static DXDataObjectDXDataObject. getInstanceWithEnvironment(String objectId, DXContainer project, DXEnvironment env)Returns aDXDataObjectcorresponding to an existing object with the specified ID in the specified project or container, using the specified environment.static DXDataObjectDXDataObject. getInstanceWithEnvironment(String objectId, DXEnvironment env)Returns aDXDataObjectcorresponding to an existing object with the specified ID, using the specified environment.Methods in com.dnanexus that return types with arguments of type DXDataObject Modifier and Type Method Description static DXSearch.FindDataObjectsRequestBuilder<DXDataObject>DXSearch. findDataObjects()Returns a builder object for finding data objects that match certain criteria.static DXSearch.FindDataObjectsRequestBuilder<DXDataObject>DXSearch. findDataObjectsWithEnvironment(DXEnvironment env)Returns a builder object for finding data objects that match certain criteria, using the specified environment.List<DXDataObject>DXContainer.FolderContents. getObjects()Lists all data objects in the specified folder.Methods in com.dnanexus with parameters of type DXDataObject Modifier and Type Method Description ExecutableRunner<T>ExecutableRunner. dependsOn(DXDataObject dataObject)Makes the resulting execution depend on the specified data object, so that the execution will not begin until the data object is closed.DXSearch.FindDataObjectsRequestBuilder<T>DXSearch.FindDataObjectsRequestBuilder. withLinkTo(DXDataObject dataObject)Only returns data objects that link to the specified data object.Method parameters in com.dnanexus with type arguments of type DXDataObject Modifier and Type Method Description voidDXContainer. move(List<? extends DXDataObject> objects, List<String> folders, String destinationFolder)Moves the specified data objects and folders to a destination folder in the same container.voidDXContainer. moveObjects(List<? extends DXDataObject> objects, String destinationFolder)Moves the specified data objects to a destination folder in the same container.voidDXContainer. removeObjects(List<? extends DXDataObject> objects)Removes the specified objects from the container.DXSearch.FindDataObjectsRequestBuilder<T>DXSearch.FindDataObjectsRequestBuilder. withIdsIn(Collection<? extends DXDataObject> dataObjects)Only returns data objects whose IDs match one of the specified data objects.
-