Class EsAbstractBehavior.BulkList<E,B>
- java.lang.Object
-
- org.codelibs.fess.es.log.allcommon.EsAbstractBehavior.BulkList<E,B>
-
- All Implemented Interfaces:
java.lang.Iterable<E>,java.util.Collection<E>,java.util.List<E>
- Enclosing class:
- EsAbstractBehavior<ENTITY extends org.dbflute.Entity,CB extends org.dbflute.cbean.ConditionBean>
public static class EsAbstractBehavior.BulkList<E,B> extends java.lang.Object implements java.util.List<E>
-
-
Constructor Summary
Constructors Constructor Description BulkList(java.util.List<E> parent, EsAbstractEntity.RequestOptionCall<org.elasticsearch.action.bulk.BulkRequestBuilder> call, EsAbstractEntity.RequestOptionCall<B> entityCall)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, E element)booleanadd(E e)booleanaddAll(int index, java.util.Collection<? extends E> c)booleanaddAll(java.util.Collection<? extends E> c)voidclear()booleancontains(java.lang.Object o)booleancontainsAll(java.util.Collection<?> c)booleanequals(java.lang.Object o)Eget(int index)EsAbstractEntity.RequestOptionCall<org.elasticsearch.action.bulk.BulkRequestBuilder>getCall()EsAbstractEntity.RequestOptionCall<B>getEntityCall()inthashCode()intindexOf(java.lang.Object o)booleanisEmpty()java.util.Iterator<E>iterator()intlastIndexOf(java.lang.Object o)java.util.ListIterator<E>listIterator()java.util.ListIterator<E>listIterator(int index)Eremove(int index)booleanremove(java.lang.Object o)booleanremoveAll(java.util.Collection<?> c)booleanretainAll(java.util.Collection<?> c)Eset(int index, E element)intsize()java.util.List<E>subList(int fromIndex, int toIndex)java.lang.Object[]toArray()<T> T[]toArray(T[] a)
-
-
-
Constructor Detail
-
BulkList
public BulkList(java.util.List<E> parent, EsAbstractEntity.RequestOptionCall<org.elasticsearch.action.bulk.BulkRequestBuilder> call, EsAbstractEntity.RequestOptionCall<B> entityCall)
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(java.lang.Object o)
-
iterator
public java.util.Iterator<E> iterator()
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
add
public boolean add(E e)
-
remove
public boolean remove(java.lang.Object o)
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
-
addAll
public boolean addAll(java.util.Collection<? extends E> c)
-
addAll
public boolean addAll(int index, java.util.Collection<? extends E> c)- Specified by:
addAllin interfacejava.util.List<E>
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
clear
public void clear()
-
equals
public boolean equals(java.lang.Object o)
-
hashCode
public int hashCode()
-
indexOf
public int indexOf(java.lang.Object o)
- Specified by:
indexOfin interfacejava.util.List<E>
-
lastIndexOf
public int lastIndexOf(java.lang.Object o)
- Specified by:
lastIndexOfin interfacejava.util.List<E>
-
listIterator
public java.util.ListIterator<E> listIterator()
- Specified by:
listIteratorin interfacejava.util.List<E>
-
listIterator
public java.util.ListIterator<E> listIterator(int index)
- Specified by:
listIteratorin interfacejava.util.List<E>
-
subList
public java.util.List<E> subList(int fromIndex, int toIndex)
- Specified by:
subListin interfacejava.util.List<E>
-
getCall
public EsAbstractEntity.RequestOptionCall<org.elasticsearch.action.bulk.BulkRequestBuilder> getCall()
-
getEntityCall
public EsAbstractEntity.RequestOptionCall<B> getEntityCall()
-
-