public interface MosaicVectorsDao
MosaicVector
s. Modifier and Type | Method and Description |
---|---|
MosaicVector |
getMosaicVector(java.lang.String picName)
Fetch the
MosaicVector for the Pic specified by this picName |
java.util.List<MosaicVector> |
getMosaicVectors(java.util.List<Pic> picList)
Get the List of
MosaicVector s that matches this picList, which probably came from a mosaic Set. |
void |
updateMosaicVector(MosaicVector mv)
Store this
MosaicVector in the database. |
void updateMosaicVector(MosaicVector mv)
MosaicVector
in the database.mv
- The MosaicVector to store.MosaicVector getMosaicVector(java.lang.String picName)
MosaicVector
for the Pic specified by this picNamepicName
- The name of the Pic to query.java.util.List<MosaicVector> getMosaicVectors(java.util.List<Pic> picList)
MosaicVector
s that matches this picList, which probably came from a mosaic Set.picList
- The List of Pics to queryMosaicVector
s. The List may be empty, but not null.