Class ResultList
- java.lang.Object
-
- com.orchestranetworks.addon.dex.result.ResultList
-
public final class ResultList extends java.lang.ObjectDefines a list ofResult.- Since:
- 2.3.0
-
-
Constructor Summary
Constructors Constructor Description ResultList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Result dataResult)Adds aResultobject to thisResultList.Resultget(int index)java.util.Iterator<Result>getDataResults()Returns an iterator over the elements in this list in proper sequence.intgetSize()Returns the number of elements in this list.booleanisEmpty()Returnstrueif this list contains no elements.
-
-
-
Method Detail
-
get
public Result get(int index)
-
getSize
public int getSize()
Returns the number of elements in this list.
-
getDataResults
public java.util.Iterator<Result> getDataResults()
Returns an iterator over the elements in this list in proper sequence.
-
isEmpty
public boolean isEmpty()
Returnstrueif this list contains no elements.
-
-