OmeroBlitz API
Home Previous Up Next Index

omero::RCollection

Overview

[ "protected" ] class RCollection extends RType

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 {@code 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.

Derived Classes and Interfaces

RArray
RList
RSet

Operation Index

getValue
size
get
add
addAll

Data Member Index

val

Operations

RTypeSeq getValue()

int size()

RType get(int index)

void add(RType value)

void addAll(RTypeSeq value)

Data Members

RTypeSeq val;


Home Previous Up Next Index