de.factoryfx.data.storage.DataDeSerialisation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data Show documentation
Show all versions of data Show documentation
factoryfx dependency injection framework
The newest version!
package de.factoryfx.data.storage;
import de.factoryfx.data.Data;
public interface DataDeSerialisation {
boolean canRead(int dataModelVersion);
R read(String data);
StoredDataMetadata readStorageMetadata(String data);
ScheduledDataMetadata readScheduledMetadata(String data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy