List of usage examples for java.util AbstractList subclass-usage
From source file storm.trident.tuple.ComboList.java
public class ComboList extends AbstractList<Object> { public static class Factory implements Serializable { Pointer[] index; int[] sizes; public Factory(int... sizes) {
From source file org.apache.storm.trident.tuple.ComboList.java
public class ComboList extends AbstractList<Object> { public static class Factory implements Serializable { Pointer[] index; int[] sizes; public Factory(int... sizes) {
From source file org.onexus.website.api.utils.reflection.ListComposer.java
public class ListComposer<T> extends AbstractList<T> { private Object parent; private String[] expression; public ListComposer(Object parent, String expression) {
From source file com.evolveum.midpoint.prism.xjc.PropertyArrayList.java
/**
* This class is used to wrap {@link PrismProperty} values for JAXB objects with
* {@link java.util.List} properties.
* <p/>
* This list implementation is based on {@link java.util.Set} so indexes are
* not guaranteed. Objects positions can change in time :)
From source file tdrc.tuple.Tuple.java
public class Tuple<T> extends AbstractList<T> implements Comparable<Tuple<T>> { List<T> tuple; BiFunction<Tuple<T>, Tuple<T>, Integer> comparator; private BiFunction<Tuple<T>, Tuple<T>, Double> distanceCalculator;
From source file com.evolveum.midpoint.prism.xjc.PrismReferenceArrayList.java
/** * @author lazyman * * TODO: account for concurrent structural modifications using modCount property */ public abstract class PrismReferenceArrayList<T> extends AbstractList<T> implements Serializable {
From source file de.dhke.projects.cutil.collections.ExtractorList.java
/**
* Wrapper list that supports transformed reading from
* another list.
* <p />
* Can bee seen as as the "reader" variant of {@link TransformedList},
* which transforms items <em>ADDED</em> to a list.
From source file at.tugraz.iaik.magnum.client.util.datatypes.SortedList.java
public class SortedList<E extends Comparable> extends AbstractList<E> { private TreeList<E> list; public SortedList() { this.list = new TreeList<>();
From source file org.cloudfoundry.identity.uaa.scim.JdbcPagingList.java
/**
* <p>
* List implementation backed by a database query, allowing iteration and sublist operations without pulling the wole
* dataset into memory.
* </p>
*
From source file org.cloudfoundry.identity.uaa.rest.jdbc.JdbcPagingList.java
/**
* <p>
* List implementation backed by a database query, allowing iteration and sublist operations without pulling the wole
* dataset into memory.
* </p>
*