Package | Description |
---|---|
com.dnanexus |
Provides low- and high-level bindings to the DNAnexus Platform.
|
Modifier and Type | Class and Description |
---|---|
protected static class |
DXDataObject.Builder<T extends DXDataObject.Builder<T,U>,U extends DXDataObject>
Abstract builder class for creating a new data object of class
U . |
static class |
DXSearch.FindDataObjectsRequestBuilder<T extends DXDataObject>
Builder class for formulating
findDataObjects queries and executing them. |
static class |
DXSearch.FindDataObjectsResult<T extends DXDataObject>
The set of data objects that matched a
findDataObjects query. |
Modifier and Type | Class and Description |
---|---|
class |
DXApplet
An applet (an executable data object).
|
class |
DXFile
A file (an opaque sequence of bytes).
|
class |
DXRecord
A record (the minimal data object class).
|
class |
DXWorkflow
A workflow.
|
Modifier and Type | Method and Description |
---|---|
DXDataObject |
DXDataObject.close()
Closes the data object.
|
DXDataObject |
DXDataObject.closeAndWait()
Closes the data object and waits until the close operation is complete.
|
static DXDataObject |
DXDataObject.getInstance(String objectId)
Returns a
DXDataObject corresponding to an existing object with the specified ID. |
static DXDataObject |
DXDataObject.getInstance(String objectId,
DXContainer project)
Returns a
DXDataObject corresponding to an existing object with the specified ID in
the specified project or container. |
static DXDataObject |
DXDataObject.getInstanceWithEnvironment(String objectId,
DXContainer project,
DXEnvironment env)
Returns a
DXDataObject corresponding to an existing object with the specified ID in
the specified project or container, using the specified environment. |
static DXDataObject |
DXDataObject.getInstanceWithEnvironment(String objectId,
DXEnvironment env)
Returns a
DXDataObject corresponding to an existing object with the specified ID,
using the specified environment. |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
DXContainer.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.
|
void |
DXContainer.moveObjects(List<? extends DXDataObject> objects,
String destinationFolder)
Moves the specified data objects to a destination folder in the same container.
|
void |
DXContainer.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.
|
Copyright © 2023. All Rights Reserved.