Package com.couchbase.lite
Interface ArrayInterface
-
- All Known Implementing Classes:
Array,MutableArray,Result
@Internal public interface ArrayInterfaceInternal interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcount()ArrayInterfacegetArray(int index)BlobgetBlob(int index)booleangetBoolean(int index)DategetDate(int index)DictionaryInterfacegetDictionary(int index)doublegetDouble(int index)floatgetFloat(int index)intgetInt(int index)longgetLong(int index)NumbergetNumber(int index)StringgetString(int index)ObjectgetValue(int index)StringtoJSON()List<Object>toList()
-
-
-
Method Detail
-
count
int count()
-
getInt
int getInt(int index)
-
getLong
long getLong(int index)
-
getFloat
float getFloat(int index)
-
getDouble
double getDouble(int index)
-
getBoolean
boolean getBoolean(int index)
-
getNumber
@Nullable Number getNumber(int index)
-
getString
@Nullable String getString(int index)
-
getDate
@Nullable Date getDate(int index)
-
getBlob
@Nullable Blob getBlob(int index)
-
getArray
@Nullable ArrayInterface getArray(int index)
-
getDictionary
@Nullable DictionaryInterface getDictionary(int index)
-
getValue
@Nullable Object getValue(int index)
-
toJSON
@NonNull String toJSON()
-
-