1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.tikv.common.row;
19
20 import java.io.Serializable;
21 import java.sql.Date;
22 import java.sql.Time;
23 import java.sql.Timestamp;
24 import org.tikv.common.types.DataType;
25
26
27
28
29
30 public interface Row extends Serializable {
31 void setNull(int pos);
32
33 boolean isNull(int pos);
34
35 void setFloat(int pos, float v);
36
37 float getFloat(int pos);
38
39 void setDouble(int pos, double v);
40
41 double getDouble(int pos);
42
43 void setInteger(int pos, int v);
44
45 int getInteger(int pos);
46
47 void setShort(int pos, short v);
48
49 short getShort(int pos);
50
51 void setLong(int pos, long v);
52
53 long getLong(int pos);
54
55 long getUnsignedLong(int pos);
56
57 void setString(int pos, String v);
58
59 String getString(int pos);
60
61 void setTime(int pos, Time v);
62
63 Date getTime(int pos);
64
65 void setTimestamp(int pos, Timestamp v);
66
67 Timestamp getTimestamp(int pos);
68
69 void setDate(int pos, Date v);
70
71 Date getDate(int pos);
72
73 void setBytes(int pos, byte[] v);
74
75 byte[] getBytes(int pos);
76
77 void set(int pos, DataType type, Object v);
78
79 Object get(int pos, DataType type);
80
81 int fieldCount();
82 }