You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
678 B
34 lines
678 B
4 years ago
|
package com.tptj.demo.hg.connection.store;
|
||
|
|
||
|
/**
|
||
|
* @author 秃破天际
|
||
|
* @version 10.0
|
||
|
* Created by 秃破天际 on 2021-03-31
|
||
|
**/
|
||
|
public class Data {
|
||
|
private String[] key = new String[0];
|
||
|
private String[][] row = new String[0][0];
|
||
|
public static final Data EMPTY = new Data();
|
||
|
private Data(){}
|
||
|
public Data(String[] key, String[][] row) {
|
||
|
this.key = key;
|
||
|
this.row = row;
|
||
|
}
|
||
|
|
||
|
public String[] getKey() {
|
||
|
return key;
|
||
|
}
|
||
|
|
||
|
public void setKey(String[] key) {
|
||
|
this.key = key;
|
||
|
}
|
||
|
|
||
|
public String[][] getRow() {
|
||
|
return row;
|
||
|
}
|
||
|
|
||
|
public void setRow(String[][] row) {
|
||
|
this.row = row;
|
||
|
}
|
||
|
}
|