Package omero

Interface _RCollectionOperationsNC

  • All Superinterfaces:
    _RTypeOperationsNC
    All Known Subinterfaces:
    _RArrayOperationsNC, _RListOperationsNC, _RSetOperationsNC
    All Known Implementing Classes:
    _RArrayTie, _RCollectionTie, _RListTie, _RSetTie, RArray, RCollection, RList, RSet

    public interface _RCollectionOperationsNC
    extends _RTypeOperationsNC
    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()
      • size

        int size()
      • get

        RType get​(int index)
      • add

        void add​(RType value)
      • addAll

        void addAll​(java.util.List<RType> value)