Package thredds.inventory
Class CollectionList
- java.lang.Object
-
- thredds.inventory.CollectionAbstract
-
- thredds.inventory.CollectionList
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,MCollection
- Direct Known Subclasses:
CollectionSingleFile
public class CollectionList extends CollectionAbstract
MCollection that is initialized by specific list of MFiles. Sorted by name. no date extractor.- Since:
- 11/13/13
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class thredds.inventory.CollectionAbstract
CollectionAbstract.DateSorter, CollectionAbstract.MyStreamFilter
-
-
Field Summary
Fields Modifier and Type Field Description protected List<MFile>
mfiles
-
Fields inherited from class thredds.inventory.CollectionAbstract
auxInfo, CATALOG, collectionName, dateExtractor, DIR, FILE, GLOB, lastModified, LIST, logger, protoChoice, root, sfilter, startCollection
-
-
Constructor Summary
Constructors Modifier Constructor Description CollectionList(String collectionName, String root, List<MFile> mfiles, org.slf4j.Logger logger)
CollectionList(String collectionName, String list, org.slf4j.Logger logger)
protected
CollectionList(String collectionName, org.slf4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Close and release any resources.CloseableIterator<MFile>
getFileIterator()
Get the current collection of MFile, no guaranteed order.Iterable<MFile>
getFilesSorted()
Get the current collection of MFile.-
Methods inherited from class thredds.inventory.CollectionAbstract
cleanName, extractDate, getAuxInfo, getCollectionName, getFilenames, getIndexFilename, getLastModified, getLatestFile, getPartitionDate, getProtoIndex, getRoot, hasDateExtractor, makeFileListSorted, open, parseOlderThanString, putAuxInfo, setDateExtractor, setRoot, setStreamFilter
-
-
-
-
Method Detail
-
getFilesSorted
public Iterable<MFile> getFilesSorted()
Description copied from interface:MCollection
Get the current collection of MFile. if hasDateExtractor() == true, these will be sorted by Date, otherwise by path.- Returns:
- current collection of MFile as an Iterable.
-
getFileIterator
public CloseableIterator<MFile> getFileIterator()
Description copied from interface:MCollection
Get the current collection of MFile, no guaranteed order. May be faster than getFilesSorted() for large collections, use when order is not important.try (CloseableIterator
iter = getFileIterator()) { while (iter.hasNext()) { MFile file = iter.next(); } } - Returns:
- current collection of MFile as an CloseableIterator.
-
close
public void close()
Description copied from interface:MCollection
Close and release any resources. Do not make further calls on this object.
-
-