Class ResultSet


  • public class ResultSet
    extends java.lang.Object
    Represents the results of a collection of InfluxDB SELECT queries.
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ResultSet.Parser
      Parser that takes an InfluxDB query response as JSON and produces a corresponding ResultSet.
    • Constructor Summary

      Constructors 
      Constructor Description
      ResultSet​(java.util.List<Result> results)
      Creates a ResultSet.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.util.List<Result> getResults()
      The list of results, one for each query sent to the server.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ResultSet

        public ResultSet​(java.util.List<Result> results)
        Creates a ResultSet.
        Parameters:
        results - The list of results, one for each query sent to the server.
    • Method Detail

      • getResults

        public java.util.List<Result> getResults()
        The list of results, one for each query sent to the server.
        Returns:
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object