Package org.apache.avro.generic
Class PrimitivesArrays.BooleanArray
java.lang.Object
java.util.AbstractCollection<Boolean>
java.util.AbstractList<Boolean>
org.apache.avro.generic.GenericData.AbstractArray<Boolean>
org.apache.avro.generic.PrimitivesArrays.BooleanArray
- All Implemented Interfaces:
Comparable<GenericArray<Boolean>>
,Iterable<Boolean>
,Collection<Boolean>
,List<Boolean>
,GenericArray<Boolean>
,GenericContainer
- Enclosing class:
PrimitivesArrays
-
Field Summary
Fields inherited from class org.apache.avro.generic.GenericData.AbstractArray
size
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionBooleanArray
(int capacity, Schema schema) BooleanArray
(Schema schema, Collection<Boolean> c) -
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(boolean o) void
add
(int location, boolean o) void
boolean
void
clear()
get
(int i) boolean
getBoolean
(int i) Direct primitive int access.peek()
The current content of the location whereList.add(Object)
would next store an element, if any.remove
(int i) boolean
set
(int i, boolean o) protected void
swap
(int index1, int index2) Methods inherited from class org.apache.avro.generic.GenericData.AbstractArray
compareTo, equals, getSchema, hashCode, iterator, reset, reverse, size
Methods inherited from class java.util.AbstractList
addAll, indexOf, lastIndexOf, listIterator, listIterator, removeRange, subList
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface org.apache.avro.generic.GenericArray
prune
Methods inherited from interface java.util.List
addAll, addAll, contains, containsAll, indexOf, isEmpty, lastIndexOf, listIterator, listIterator, remove, removeAll, replaceAll, retainAll, sort, spliterator, subList, toArray, toArray
-
Constructor Details
-
BooleanArray
-
BooleanArray
-
-
Method Details
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<Boolean>
- Specified by:
clear
in interfaceList<Boolean>
- Overrides:
clear
in classAbstractList<Boolean>
-
get
-
getBoolean
public boolean getBoolean(int i) Direct primitive int access.- Parameters:
i
- : index.- Returns:
- value at index.
-
add
- Specified by:
add
in interfaceCollection<Boolean>
- Specified by:
add
in interfaceList<Boolean>
- Overrides:
add
in classAbstractList<Boolean>
-
add
public boolean add(boolean o) -
add
-
add
public void add(int location, boolean o) -
set
-
set
public boolean set(int i, boolean o) -
remove
-
peek
Description copied from interface:GenericArray
The current content of the location whereList.add(Object)
would next store an element, if any. This permits reuse of arrays and their elements without allocating new objects. -
swap
protected void swap(int index1, int index2) - Specified by:
swap
in classGenericData.AbstractArray<Boolean>
-