net.jqwik.engine.properties.arbitraries.AbstractArbitraryBase Maven / Gradle / Ivy
package net.jqwik.engine.properties.arbitraries;
import net.jqwik.api.*;
public abstract class AbstractArbitraryBase implements Cloneable {
@SuppressWarnings("unchecked")
protected A typedClone() {
try {
return (A) this.clone();
} catch (CloneNotSupportedException e) {
throw new JqwikException(e.getMessage());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy