Class FLArrayIterator
- java.lang.Object
-
- com.couchbase.lite.internal.core.C4NativePeer
-
- com.couchbase.lite.internal.fleece.FLArrayIterator
-
- All Implemented Interfaces:
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 void
begin(FLArray array)
static FLArrayIterator
getManagedArrayIterator()
static FLArrayIterator
getUnmanagedArrayIterator(long peer)
FLValue
getValue()
FLValue
getValueAt(int index)
boolean
next()
-
Methods inherited from class com.couchbase.lite.internal.core.C4NativePeer
toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
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)
-
-