mirror of
https://github.com/processing/processing4.git
synced 2026-02-05 06:39:20 +01:00
working on new Table class setup
This commit is contained in:
@@ -12,4 +12,15 @@ public interface TableRow {
|
||||
public float getFloat(String columnName);
|
||||
public double getDouble(int column);
|
||||
public double getDouble(String columnName);
|
||||
|
||||
public void setString(int column, String value);
|
||||
public void setString(String columnName, String value);
|
||||
public void setInt(int column, int value);
|
||||
public void setInt(String columnName, int value);
|
||||
public void setLong(int column, long value);
|
||||
public void setLong(String columnName, long value);
|
||||
public void setFloat(int column, float value);
|
||||
public void setFloat(String columnName, float value);
|
||||
public void setDouble(int column, double value);
|
||||
public void setDouble(String columnName, double value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user