Class Row.Builder

  • Enclosing class:
    Row

    public static class Row.Builder
    extends java.lang.Object
    Builder for constructing a Row
    • Constructor Summary

      Constructors 
      Constructor Description
      Builder()  
    • Method Summary

      Modifier and Type Method Description
      Row.Builder addValues​(java.lang.String... values)  
      Row build()  
      Row.Builder depth​(java.lang.Integer value)  
      Row.Builder groupKey​(java.lang.String value)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • groupKey

        public Row.Builder groupKey​(java.lang.String value)
        Parameters:
        value - TODO
        Returns:
        The Row.Builder, enabling method chaining
      • addValues

        public Row.Builder addValues​(java.lang.String... values)
        Parameters:
        values - The value for this row of data. The values in the list are in the same order as the fields in the ResultRequest
        Returns:
        The Row.Builder, enabling method chaining
      • depth

        public Row.Builder depth​(java.lang.Integer value)
        Parameters:
        value - The grouping depth, where 0 is the top level of grouping, or where there is no grouping
        Returns:
        The Row.Builder, enabling method chaining
      • build

        public Row build()