Uses of Class
fr.igred.omero.GenericObjectWrapper
-
Packages that use GenericObjectWrapper Package Description fr.igred.omero This package contains abstract wrapper classes for the OMERO Gateway and the basic OMERO object.fr.igred.omero.annotations This package contains wrapper classes for annotations.fr.igred.omero.meta This package contains wrapper classes for users, groups and planes information.fr.igred.omero.repository This package contains classes related to the hierarchical organization for images.fr.igred.omero.roi This package contains wrapper classes for OMERO shapes and ROIs.fr.igred.omero.util This package contains a utility class used to check if the library requirements are available. -
-
Uses of GenericObjectWrapper in fr.igred.omero
Subclasses of GenericObjectWrapper in fr.igred.omero Modifier and Type Class Description class
AnnotatableWrapper<T extends DataObject>
Generic class containing a DataObject (or a subclass) object.Methods in fr.igred.omero with type parameters of type GenericObjectWrapper Modifier and Type Method Description static <T extends GenericObjectWrapper<?>>
List<T>GenericObjectWrapper. distinct(Collection<? extends T> objects)
Only keeps objects with different IDs in a collection.static <U extends GenericObjectWrapper<?>>
List<U>GenericObjectWrapper. flatten(Collection<? extends Collection<? extends U>> lists)
Flattens a collection of collections and only keeps objects with different IDs.protected static <U extends DataObject,V extends GenericObjectWrapper<U>>
List<V>GenericObjectWrapper. wrap(Collection<U> objects, Function<? super U,? extends V> mapper)
Converts a DataObject list to a ObjectWrapper list, sorted bysorter
.protected static <U extends DataObject,V extends GenericObjectWrapper<U>,W extends Comparable<W>>
List<V>GenericObjectWrapper. wrap(Collection<U> objects, Function<? super U,? extends V> mapper, Function<? super V,? extends W> sorter)
Converts a DataObject list to an ObjectWrapper list, sorted bysorter
.Methods in fr.igred.omero with parameters of type GenericObjectWrapper Modifier and Type Method Description void
Client. delete(GenericObjectWrapper<?> object)
Deletes an object from OMERO.Method parameters in fr.igred.omero with type arguments of type GenericObjectWrapper Modifier and Type Method Description void
Client. delete(Collection<? extends GenericObjectWrapper<?>> objects)
Deletes multiple objects from OMERO. -
Uses of GenericObjectWrapper in fr.igred.omero.annotations
Subclasses of GenericObjectWrapper in fr.igred.omero.annotations Modifier and Type Class Description class
FileAnnotationWrapper
Class containing a FileAnnotationData object.class
GenericAnnotationWrapper<T extends AnnotationData>
Generic class containing an AnnotationData (or a subclass) object.class
MapAnnotationWrapper
Class containing a MapAnnotationData, a MapAnnotationData contains a list of NamedValue(Key-Value pair).class
RatingAnnotationWrapper
Class containing a RatingAnnotationData object.class
TagAnnotationWrapper
Class containing a TagAnnotationData object.class
TextualAnnotationWrapper
Class containing a TextualAnnotationData object. -
Uses of GenericObjectWrapper in fr.igred.omero.meta
Subclasses of GenericObjectWrapper in fr.igred.omero.meta Modifier and Type Class Description class
ExperimenterWrapper
Class containing an ExperimenterData object.class
GroupWrapper
Class containing a GroupData object.class
PlaneInfoWrapper
-
Uses of GenericObjectWrapper in fr.igred.omero.repository
Subclasses of GenericObjectWrapper in fr.igred.omero.repository Modifier and Type Class Description class
ChannelWrapper
Class containing a ChannelData object.class
DatasetWrapper
Class containing a DatasetData object.class
FolderWrapper
Class containing a FolderData object.class
GenericRepositoryObjectWrapper<T extends DataObject>
Generic class containing a DataObject (or a subclass) object.class
ImageWrapper
Class containing an ImageData.class
PixelsWrapper
Class containing a PixelData object.class
PlateAcquisitionWrapper
Class containing a PlateAcquisitionData object.class
PlateWrapper
Class containing a PlateData object.class
ProjectWrapper
Class containing a ProjectData object.class
ScreenWrapper
Class containing a ScreenData object.class
WellSampleWrapper
Class containing a WellSampleData object.class
WellWrapper
Class containing a WellData object. -
Uses of GenericObjectWrapper in fr.igred.omero.roi
Subclasses of GenericObjectWrapper in fr.igred.omero.roi Modifier and Type Class Description class
EllipseWrapper
Class containing an EllipseData.class
GenericShapeWrapper<T extends ShapeData>
Generic class containing a ShapeData (or a subclass) object.class
LineWrapper
Class containing an LineData.class
MaskWrapper
Class containing an MaskData.class
PointWrapper
Class containing an PointData.class
PolygonWrapper
Class containing an PolygonData.class
PolylineWrapper
Class containing an PolylineData.class
RectangleWrapper
Class containing an RectangleData.class
ROIWrapper
Class containing a ROIData object.class
TextWrapper
Class containing an TextData. -
Uses of GenericObjectWrapper in fr.igred.omero.util
Methods in fr.igred.omero.util with type parameters of type GenericObjectWrapper Modifier and Type Method Description static <T extends DataObject,U extends GenericObjectWrapper<? extends T>>
UWrapper. wrap(T object)
Converts (wraps) a DataObject to a GenericObjectWrapper.
-