クラス JSLikeList<T>
- java.lang.Object
-
- com.github.vertical_blank.sqlformatter.core.util.JSLikeList<T>
-
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 JSLikeList(List<T> tList)
-
メソッドの概要
すべてのメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 Tget(int index)booleanisEmpty()Iterator<T>iterator()Stringjoin()Stringjoin(CharSequence delimiter)<R> JSLikeList<R>map(Function<T,R> mapper)intsize()Stream<T>stream()List<T>toList()JSLikeList<T>with(List<T> other)-
クラスから継承されたメソッド java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
インタフェースから継承されたメソッド java.lang.Iterable
forEach, spliterator
-
-
-
-
メソッドの詳細
-
map
public <R> JSLikeList<R> map(Function<T,R> mapper)
-
join
public String join(CharSequence delimiter)
-
with
public JSLikeList<T> with(List<T> other)
-
join
public String join()
-
isEmpty
public boolean isEmpty()
-
get
public T get(int index)
-
size
public int size()
-
-