Interface OCollection<T>

Type Parameters:
T - Collection item type.
All Superinterfaces:
Iterable<T>, OSizeable
All Known Implementing Classes:
ORidBag

public interface OCollection<T> extends Iterable<T>, OSizeable
If class implements given interface it means that this class represents collection which is not part of Java Collections Framework.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(T value)
     
    void
    remove(T value)
     

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator

    Methods inherited from interface com.orientechnologies.common.util.OSizeable

    size
  • Method Details

    • add

      void add(T value)
    • remove

      void remove(T value)