![JAR search and dependency download from the Maven repository](/logo.png)
net.jqwik.time.api.arbitraries.ZoneOffsetArbitrary Maven / Gradle / Ivy
package net.jqwik.time.api.arbitraries;
import java.time.*;
import org.apiguardian.api.*;
import net.jqwik.api.*;
import static org.apiguardian.api.API.Status.*;
/**
* Fluent interface to configure the generation of zone offset values.
* All generated values are between -12:00:00 and +14:00:00.
* All generated minute values are 0, 15, 30 or 45 with second 0.
*/
@API(status = EXPERIMENTAL, since = "1.5.1")
public interface ZoneOffsetArbitrary extends Arbitrary {
/**
* Set the allowed lower {@code min} (included) and upper {@code max} (included) bounder of generated zone offset values.
*/
ZoneOffsetArbitrary between(ZoneOffset min, ZoneOffset max);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy