no.unit.nva.model.WithCopy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nva-datamodel-java Show documentation
Show all versions of nva-datamodel-java Show documentation
The java version of the NVA datamodel
package no.unit.nva.model;
public interface WithCopy {
/**
* Returns a Builder filled in with a copy of the data of the original object.
*
* @return a builder instance with filled in data.
*/
T copy();
}