mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
16 lines
446 B
Java
16 lines
446 B
Java
package processing.data;
|
|
|
|
|
|
public interface TableRow {
|
|
public String get(int column);
|
|
public String get(String columnName);
|
|
public int getInt(int column);
|
|
public int getInt(String columnName);
|
|
public long getLong(int column);
|
|
public long getLong(String columnName);
|
|
public float getFloat(int column);
|
|
public float getFloat(String columnName);
|
|
public double getDouble(int column);
|
|
public double getDouble(String columnName);
|
|
}
|