Package net.jqwik.api
Class Table
- java.lang.Object
-
- net.jqwik.api.Table
-
@API(status=MAINTAINED, since="1.0") public class Table extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Table()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <E> java.lang.Iterable<Tuple.Tuple1<E>>
of(E... elements)
static <T> java.lang.Iterable<Tuple.Tuple1<T>>
of(Tuple.Tuple1<T>... tuples)
static <T1,T2>
java.lang.Iterable<Tuple.Tuple2<T1,T2>>of(Tuple.Tuple2<T1,T2>... tuples)
static <T1,T2,T3>
java.lang.Iterable<Tuple.Tuple3<T1,T2,T3>>of(Tuple.Tuple3<T1,T2,T3>... tuples)
static <T1,T2,T3,T4>
java.lang.Iterable<Tuple.Tuple4<T1,T2,T3,T4>>of(Tuple.Tuple4<T1,T2,T3,T4>... tuples)
static <T1,T2,T3,T4,T5>
java.lang.Iterable<Tuple.Tuple5<T1,T2,T3,T4,T5>>of(Tuple.Tuple5<T1,T2,T3,T4,T5>... tuples)
static <T1,T2,T3,T4,T5,T6>
java.lang.Iterable<Tuple.Tuple6<T1,T2,T3,T4,T5,T6>>of(Tuple.Tuple6<T1,T2,T3,T4,T5,T6>... tuples)
static <T1,T2,T3,T4,T5,T6,T7>
java.lang.Iterable<Tuple.Tuple7<T1,T2,T3,T4,T5,T6,T7>>of(Tuple.Tuple7<T1,T2,T3,T4,T5,T6,T7>... tuples)
static <T1,T2,T3,T4,T5,T6,T7,T8>
java.lang.Iterable<Tuple.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>>of(Tuple.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>... tuples)
-
-
-
Method Detail
-
of
@SafeVarargs public static <E> java.lang.Iterable<Tuple.Tuple1<E>> of(E... elements)
-
of
@SafeVarargs public static <T> java.lang.Iterable<Tuple.Tuple1<T>> of(Tuple.Tuple1<T>... tuples)
-
of
@SafeVarargs public static <T1,T2> java.lang.Iterable<Tuple.Tuple2<T1,T2>> of(Tuple.Tuple2<T1,T2>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3> java.lang.Iterable<Tuple.Tuple3<T1,T2,T3>> of(Tuple.Tuple3<T1,T2,T3>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3,T4> java.lang.Iterable<Tuple.Tuple4<T1,T2,T3,T4>> of(Tuple.Tuple4<T1,T2,T3,T4>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3,T4,T5> java.lang.Iterable<Tuple.Tuple5<T1,T2,T3,T4,T5>> of(Tuple.Tuple5<T1,T2,T3,T4,T5>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3,T4,T5,T6> java.lang.Iterable<Tuple.Tuple6<T1,T2,T3,T4,T5,T6>> of(Tuple.Tuple6<T1,T2,T3,T4,T5,T6>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3,T4,T5,T6,T7> java.lang.Iterable<Tuple.Tuple7<T1,T2,T3,T4,T5,T6,T7>> of(Tuple.Tuple7<T1,T2,T3,T4,T5,T6,T7>... tuples)
-
of
@SafeVarargs public static <T1,T2,T3,T4,T5,T6,T7,T8> java.lang.Iterable<Tuple.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>> of(Tuple.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>... tuples)
-
-