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 the omero.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 Detail

      • getValue

        java.util.List<RType> getValue​(Ice.Current __current)
      • size

        int size​(Ice.Current __current)
      • get

        RType get​(int index,
                  Ice.Current __current)
      • add

        void add​(RType value,
                 Ice.Current __current)
      • addAll

        void addAll​(java.util.List<RType> value,
                    Ice.Current __current)