com.infomaximum.database.upd.RecordObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.upd;
import com.infomaximum.database.Record;
import java.io.Serializable;
import java.util.List;
public class RecordObject extends Record {
private final List> values;
public RecordObject(long id, List> values) {
super(id, values.stream().map(FieldValue::getValue).toArray());
this.values = values;
values.add(1, new FieldValue<>("dsf", 1));
String s = (String) values.get(1).getValue();
}
public List> getRecordValues() {
return values;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy