mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
sync with desktop
This commit is contained in:
15
android/core/src/processing/data/TableRow.java
Normal file
15
android/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