Package com.humaorie.dollar
Interface Dollar.ListWrapper<T>
-
- All Superinterfaces:
Dollar.Wrapper<T>,Iterable<T>
- Enclosing class:
- Dollar
public static interface Dollar.ListWrapper<T> extends Dollar.Wrapper<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Dollar.ListWrapper<T>add(T item)Dollar.ListWrapper<T>addAll(Iterable<T> items)Dollar.ListWrapper<T>checked(Class<T> requiredClass)Dollar.ListWrapper<T>copy()Dollar.ListWrapper<T>immutable()Dollar.ListWrapper<T>threadSafe()-
Methods inherited from interface com.humaorie.dollar.Dollar.Wrapper
concat, concat, concat, convert, fill, filter, join, join, map, repeat, reverse, shuffle, shuffle, size, slice, slice, sort, toArray, toArray, toList, toList, toSet, toSet
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
copy
Dollar.ListWrapper<T> copy()
- Specified by:
copyin interfaceDollar.Wrapper<T>
-
add
Dollar.ListWrapper<T> add(T item)
-
addAll
Dollar.ListWrapper<T> addAll(Iterable<T> items)
-
threadSafe
Dollar.ListWrapper<T> threadSafe()
-
immutable
Dollar.ListWrapper<T> immutable()
-
checked
Dollar.ListWrapper<T> checked(Class<T> requiredClass)
-
-