Class StatementResult


  • public final class StatementResult
    extends Object
    Represents a statement result, featuring one row of all the columns a table has.
    • Constructor Detail

      • StatementResult

        public StatementResult​(Map<String,​Object> values)
    • Method Detail

      • getObject

        public Object getObject​(String column)
        Returns the column's value specified as a raw object.
        Parameters:
        column - the column you want to get the value of
        Returns:
        value object
      • getString

        public String getString​(String column)
        Returns the column's value specified as a string.
        Parameters:
        column - the column you want to get the value of as a string
        Returns:
        value string
      • getNumber

        public Number getNumber​(String column)
        Returns the column's value specified as a number
        Parameters:
        column - the column you want to get the value of as a number
        Returns:
        value number
      • getBoolean

        public Boolean getBoolean​(String column)
        Returns the column's value specified as a boolean
        Parameters:
        column - the column you want to get the value of as a boolean
        Returns:
        value boolean