![JAR search and dependency download from the Maven repository](/logo.png)
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