Package net.jqwik.api.arbitraries
Interface EmailArbitrary
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.jqwik.api.Arbitrary
Arbitrary.ArbitraryFacade
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmailArbitrary
domainHost()
Allow named web domains in the host part.EmailArbitrary
ipv4Host()
Allow IPv4 addresses in the host part.EmailArbitrary
ipv6Host()
Allow IPv6 addresses in the host part.EmailArbitrary
quotedLocalPart()
Allow quoted local part.EmailArbitrary
unquotedLocalPart()
Allow unquoted local part.-
Methods inherited from interface net.jqwik.api.Arbitrary
allValues, array, asGeneric, collect, dontShrink, edgeCases, edgeCases, exhaustive, exhaustive, filter, fixGenSize, flatMap, forEachValue, generator, ignoreException, injectDuplicates, injectNull, isUnique, iterator, list, map, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, tuple5, unique
-
-
-
-
Method Detail
-
quotedLocalPart
EmailArbitrary quotedLocalPart()
Allow quoted local part. Can be combined with other methods.
-
unquotedLocalPart
EmailArbitrary unquotedLocalPart()
Allow unquoted local part. Can be combined with other methods.
-
ipv4Host
EmailArbitrary ipv4Host()
Allow IPv4 addresses in the host part. Can be combined with other methods.
-
ipv6Host
EmailArbitrary ipv6Host()
Allow IPv6 addresses in the host part. Can be combined with other methods.
-
domainHost
EmailArbitrary domainHost()
Allow named web domains in the host part. Can be combined with other methods.
-
-