All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pgasync.Row Maven / Gradle / Ivy

There is a newer version: 0.9
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.github.pgasync;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.sql.Date;
import java.sql.Time;
import java.sql.Timestamp;

/**
 * Row in a queryRows result set. A row consist of 0-n columns of a single type.
 * Column values can be accessed with a 0-based index or column label.
 * 
 * @author Antti Laisi
 */
public interface Row {

    String getString(int index);

    String getString(String column);

    Byte getByte(int index);

    Byte getByte(String column);

    Character getChar(int index);

    Character getChar(String column);

    Short getShort(int index);

    Short getShort(String column);

    Integer getInt(int index);

    Integer getInt(String column);

    Long getLong(int index);

    Long getLong(String column);

    BigInteger getBigInteger(int index);

    BigInteger getBigInteger(String column);

    BigDecimal getBigDecimal(int index);

    BigDecimal getBigDecimal(String column);

    Double getDouble(int index);

    Double getDouble(String column);

    Date getDate(int index);

    Date getDate(String column);

    Time getTime(int index);

    Time getTime(String column);

    Timestamp getTimestamp(int index);

    Timestamp getTimestamp(String column);

    byte[] getBytes(int index);

    byte[] getBytes(String column);

    Boolean getBoolean(int index);

    Boolean getBoolean(String b);

     T get(int index, Class type);

     T get(String column, Class type);

     TArray getArray(String column, Class arrayType);

     TArray getArray(int index, Class arrayType);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy