Package omero
Interface _RCollectionOperations
-
- All Superinterfaces:
_RTypeOperations
- All Known Subinterfaces:
_RArrayOperations
,_RListOperations
,_RSetOperations
- All Known Implementing Classes:
_RArrayTie
,_RCollectionTie
,_RListTie
,_RSetTie
,RArray
,RCollection
,RList
,RSet
public interface _RCollectionOperations extends _RTypeOperations
The collection ""protected"" classes permit the passing of sequences of all other RTypes (including other collections) and it is itself nullable. The allows for similar arguments to collections in languages with a unified inheritance hierarchy (e.g., Java in which all ""protected"" classes extend from java.lang.Object). Unlike the other rtypes which are used internally within theomero.model
classes, these types are mutable since they solely pass through the This flexible mechanism is not used in all API calls because the flexibility brings a performance penalty.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(RType value, Ice.Current __current)
void
addAll(java.util.List<RType> value, Ice.Current __current)
RType
get(int index, Ice.Current __current)
java.util.List<RType>
getValue(Ice.Current __current)
int
size(Ice.Current __current)
-
Methods inherited from interface omero._RTypeOperations
compare
-
-