Package one.xingyi.core.client
Interface IResourceList<T>
-
- All Superinterfaces:
ISimpleList<T>,java.lang.Iterable<T>
- All Known Implementing Classes:
JsonResourceList,MirroredResourceList
public interface IResourceList<T> extends ISimpleList<T>
-
-
Field Summary
-
Fields inherited from interface one.xingyi.core.client.ISimpleList
empty
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description IResourceList<T>append(T t)static <T> IResourceList<T>create(T... ts)static <T> IResourceList<T>fromList(java.util.List<T> ts)static <J> Lens<java.util.List<J>,IResourceList<J>>listlens()IResourceList<T>withItem(int n, T t)-
Methods inherited from interface one.xingyi.core.client.ISimpleList
get, size, toList
-
-
-
-
Method Detail
-
withItem
IResourceList<T> withItem(int n, T t)
- Specified by:
withItemin interfaceISimpleList<T>
-
append
IResourceList<T> append(T t)
- Specified by:
appendin interfaceISimpleList<T>
-
create
@SafeVarargs static <T> IResourceList<T> create(T... ts)
-
fromList
static <T> IResourceList<T> fromList(java.util.List<T> ts)
-
listlens
static <J> Lens<java.util.List<J>,IResourceList<J>> listlens()
-
-