Package | Description |
---|---|
com.dnanexus |
Provides low- and high-level bindings to the DNAnexus Platform.
|
Modifier and Type | Method and Description |
---|---|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.createdAfter(Date createdAfter)
Only returns data objects that were created after the specified time.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.createdBefore(Date createdBefore)
Only returns data objects that were created before the specified time.
|
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.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.includeDescribeOutput()
Requests the default describe data for each matching data object when the query is run.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.includeDescribeOutput(DXDataObject.DescribeOptions describeOptions)
Requests describe data (with the specified options) for each matching data object when
the query is run.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.inFolder(DXContainer project,
String folder)
Only returns objects in the specified folder of the specified project (not in
subfolders).
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.inFolderOrSubfolders(DXContainer project,
String folder)
Only returns objects in the specified folder of the specified project or in its
subfolders.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.inProject(DXContainer project)
Only returns objects in the specified project.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.modifiedAfter(Date modifiedAfter)
Only returns data objects that were last modified after the specified time.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.modifiedBefore(Date modifiedBefore)
Only returns data objects that were last modified before the specified time.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.nameMatchesExactly(String name)
Only returns objects whose names exactly equal the specified string.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.nameMatchesGlob(String glob)
Only returns objects whose name match the specified glob.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.nameMatchesRegexp(String regexp)
Only returns objects whose names match the specified regexp.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.nameMatchesRegexp(String regexp,
boolean caseInsensitive)
Only returns objects whose names match the specified regexp (optionally allowing the
match to be case insensitive).
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withArchivalState(ArchivalState archivalState)
Only returns files with the specified archival state.
|
DXSearch.FindDataObjectsRequestBuilder<DXApplet> |
DXSearch.FindDataObjectsRequestBuilder.withClassApplet()
Only returns applets (filters out data objects of all other classes).
|
DXSearch.FindDataObjectsRequestBuilder<DXFile> |
DXSearch.FindDataObjectsRequestBuilder.withClassFile()
Only returns files (filters out data objects of all other classes).
|
DXSearch.FindDataObjectsRequestBuilder<DXRecord> |
DXSearch.FindDataObjectsRequestBuilder.withClassRecord()
Only returns records (filters out data objects of all other classes).
|
DXSearch.FindDataObjectsRequestBuilder<DXWorkflow> |
DXSearch.FindDataObjectsRequestBuilder.withClassWorkflow()
Only returns workflows (filters out data objects of all other classes).
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withIdsIn(Collection<? extends DXDataObject> dataObjects)
Only returns data objects whose IDs match one of the specified data objects.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withLinkTo(DXDataObject dataObject)
Only returns data objects that link to the specified data object.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withMinimumAccessLevel(AccessLevel level)
Only returns data objects to which the requesting user has at least the specified level
of permission in some project.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withProperties(DXSearch.PropertiesQuery propertiesQuery)
Only returns data objects matching the specified properties query.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withProperty(String propertyKey)
Only returns data objects where the specified property is present.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withProperty(String propertyKey,
Boolean propertyExists)
Only returns data objects where the specified property either exists or not.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withProperty(String propertyKey,
Map<String,String> mapValue)
Only returns data objects where the property key is not equal to the given value
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withProperty(String propertyKey,
String propertyValue)
Only returns data objects where the specified property has the specified value.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withSortBy(String field,
DXSearch.Ordering ordering)
Requests that the returned data objects are sorted by the specified field.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withState(DataObjectState state)
Only returns data objects with the specified state.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withTag(String tag)
Only returns data objects with the specified tag.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withTags(DXSearch.TagsQuery tagsQuery)
Only returns data objects matching the specified tags query.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withType(String type)
Only returns data objects with the specified type.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withTypes(DXSearch.TypeQuery typeQuery)
Only returns data objects matching the specified types query.
|
DXSearch.FindDataObjectsRequestBuilder<T> |
DXSearch.FindDataObjectsRequestBuilder.withVisibility(DXSearch.VisibilityQuery visibilityQuery)
Only returns data objects with the specified visibility (visible or hidden).
|
Copyright © 2023. All Rights Reserved.