Package io.protostuff
Class ListAdapter<F,T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<T>
-
- io.protostuff.ListAdapter<F,T>
-
- All Implemented Interfaces:
java.lang.Iterable<T>
,java.util.Collection<T>
,java.util.List<T>
public final class ListAdapter<F,T> extends java.util.AbstractList<T>
Provides an immutable view ofList<T>
around aList<F>
. Internal class - used in generated code only.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ListAdapter.Converter<F,T>
Convert individual elements of the List from F to T.
-
Constructor Summary
Constructors Constructor Description ListAdapter(java.util.List<F> fromList, ListAdapter.Converter<F,T> converter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
get(int index)
int
size()
-
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Field Detail
-
fromList
private final java.util.List<F> fromList
-
converter
private final ListAdapter.Converter<F,T> converter
-
-
Constructor Detail
-
ListAdapter
public ListAdapter(java.util.List<F> fromList, ListAdapter.Converter<F,T> converter)
-
-
Method Detail
-
get
public T get(int index)
-
-