Package yapion.hierarchy.api.storage
Class RetrieveResult
- java.lang.Object
-
- yapion.hierarchy.api.storage.RetrieveResult
-
public class RetrieveResult extends java.lang.Object
-
-
Method Summary
Modifier and Type Method Description <T extends YAPIONAnyType>
Tget(int index)
<T extends YAPIONAnyType>
Tget(int index, java.lang.Class<T> clazz)
<T extends YAPIONAnyType>
Tget(int index, T t)
YAPIONArray
getArray(int index)
YAPIONMap
getMap(int index)
YAPIONObject
getObject(int index)
YAPIONPointer
getPointer(int index)
YAPIONAnyType
getRaw(int index)
YAPIONType
getType(int index)
<T> YAPIONValue<T>
getValue(int index)
<T> YAPIONValue<T>
getValue(int index, @NonNull java.lang.Class<T> t)
<T> YAPIONValue<T>
getValue(int index, T t)
int
length()
int
size()
-
-
-
Method Detail
-
size
public int size()
-
length
public int length()
-
getType
public YAPIONType getType(int index)
-
getRaw
public YAPIONAnyType getRaw(int index)
-
get
public <T extends YAPIONAnyType> T get(int index)
-
get
public <T extends YAPIONAnyType> T get(int index, T t)
-
get
public <T extends YAPIONAnyType> T get(int index, java.lang.Class<T> clazz)
-
getObject
public YAPIONObject getObject(int index)
-
getArray
public YAPIONArray getArray(int index)
-
getMap
public YAPIONMap getMap(int index)
-
getPointer
public YAPIONPointer getPointer(int index)
-
getValue
public <T> YAPIONValue<T> getValue(int index)
-
getValue
public <T> YAPIONValue<T> getValue(int index, @NonNull T t)
-
getValue
public <T> YAPIONValue<T> getValue(int index, @NonNull @NonNull java.lang.Class<T> t)
-
-