I have an object in Java that I serialize with all its atributes.
public class Table implements Serializable {
private static final long serialVersionUID = 6529685098267757696L;
String name;
ArrayList<Column> columns;
ArrayList<Constraints> constraints;
ArrayList<Tuples> tuples;
}
I would like to know if it´s possible to load just some attributes of the object (ie: load just the columns atribute). After loading them Change some of their values, and then save them once again without having to load the entire object.
Thanks!