All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.protostream.containers.IndexedElementContainerAdapter Maven / Gradle / Ivy

package org.infinispan.protostream.containers;

/**
 * A container adapter that allows random access by position.
 *
 * @author [email protected]
 * @since 4.4
 */
public interface IndexedElementContainerAdapter extends ElementContainerAdapter {

   E getElement(C container, int index);

   void setElement(C container, int index, E element);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy