Class FLArrayIterator
- java.lang.Object
-
- com.couchbase.lite.internal.core.C4NativePeer
-
- com.couchbase.lite.internal.fleece.FLArrayIterator
-
- All Implemented Interfaces:
java.lang.AutoCloseable
public abstract class FLArrayIterator extends C4NativePeer
-
-
Constructor Summary
Constructors Constructor Description FLArrayIterator()FLArrayIterator(long peer)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbegin(FLArray array)static FLArrayIteratorgetManagedArrayIterator()static FLArrayIteratorgetUnmanagedArrayIterator(long peer)FLValuegetValue()FLValuegetValueAt(int index)booleannext()-
Methods inherited from class com.couchbase.lite.internal.core.C4NativePeer
toString
-
-
-
-
Method Detail
-
getUnmanagedArrayIterator
@NonNull public static FLArrayIterator getUnmanagedArrayIterator(long peer)
-
getManagedArrayIterator
@NonNull public static FLArrayIterator getManagedArrayIterator()
-
begin
public void begin(@NonNull FLArray array)
-
next
public boolean next()
-
getValue
@Nullable public FLValue getValue()
-
getValueAt
@Nullable public FLValue getValueAt(int index)
-
-