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.Closeable
    Iterable 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.Long getLimited()
      The limit value
      java.lang.Long getStart()
      The offset from the first record from which to return results
      java.lang.Long getTotal()
      The total number of results
      • Methods inherited from interface java.io.Closeable

        close
      • Methods inherited from interface java.lang.Iterable

        forEach, iterator, spliterator
    • 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