org.openprovenance.prov.interop.DeserializerFunction2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-interop Show documentation
Show all versions of prov-interop Show documentation
A package aimed at systematic testing convertibility of prov representations.
package org.openprovenance.prov.interop;
/* Functional interface, returning a deserializer function. */
import org.openprovenance.prov.model.DateTimeOption;
import java.util.TimeZone;
public interface DeserializerFunction2 {
org.openprovenance.prov.model.ProvDeserialiser apply(DateTimeOption dateTimeOption, TimeZone timeZone);
}