Package org.artifactory.search.aql
Interface AqlResult
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable,java.lang.Iterable<java.util.Map<java.lang.String,java.lang.Object>>
public interface AqlResult extends java.lang.Iterable<java.util.Map<java.lang.String,java.lang.Object>>, java.io.CloseableIterable AQL search result interface for the Artifactory public API.- Author:
- Shay Bagants
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.LonggetLimited()The limit valuejava.lang.LonggetStart()The offset from the first record from which to return resultsjava.lang.LonggetTotal()The total number of results
-
-
-
Method Detail
-
getStart
java.lang.Long getStart()
The offset from the first record from which to return results- Returns:
- The offset from the first record from which to return results
-
getTotal
java.lang.Long getTotal()
The total number of results- Returns:
- The total number of results
-
getLimited
java.lang.Long getLimited()
The limit value- Returns:
- The limit value
-
-