mirror of
https://github.com/processing/processing4.git
synced 2026-02-08 08:09:32 +01:00
change set/getString() to set/get(), break TableRow out separately
This commit is contained in:
15
core/src/processing/data/TableRow.java
Normal file
15
core/src/processing/data/TableRow.java
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user