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)java.util.DategetDate(int index)DictionaryInterfacegetDictionary(int index)doublegetDouble(int index)floatgetFloat(int index)intgetInt(int index)longgetLong(int index)java.lang.NumbergetNumber(int index)java.lang.StringgetString(int index)java.lang.ObjectgetValue(int index)java.lang.StringtoJSON()java.util.List<java.lang.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 java.lang.Number getNumber(int index)
-
getString
@Nullable java.lang.String getString(int index)
-
getDate
@Nullable java.util.Date getDate(int index)
-
getBlob
@Nullable Blob getBlob(int index)
-
getArray
@Nullable ArrayInterface getArray(int index)
-
getDictionary
@Nullable DictionaryInterface getDictionary(int index)
-
getValue
@Nullable java.lang.Object getValue(int index)
-
toList
@NonNull java.util.List<java.lang.Object> toList()
-
toJSON
@NonNull java.lang.String toJSON()
-
-