Package com.dnanexus
Class DXContainer.FolderContents
- java.lang.Object
-
- com.dnanexus.DXContainer.FolderContents
-
- Enclosing class:
- DXContainer
public static class DXContainer.FolderContents extends Object
Represents the contents of a folder.The contents are as of the time this object was created.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DXDataObject>getObjects()Lists all data objects in the specified folder.List<String>getSubfolders()Lists all subfolders of the specified folder.
-
-
-
Method Detail
-
getSubfolders
public List<String> getSubfolders()
Lists all subfolders of the specified folder.- Returns:
- List containing the full path of each subfolder (Strings starting with
"/")
-
getObjects
public List<DXDataObject> getObjects()
Lists all data objects in the specified folder.- Returns:
- List containing a
DXDataObjectfor each data object
-
-