467468469470471472473
* determined by the {@link ByteArrayGenerator#MIN_SIZE} and * {@link ByteArrayGenerator#MAX_SIZE} constants. * */ public static Generator<byte[]> byteArrays() { return new ByteArrayGenerator(); }
478479480481482483484
* * @param size * integer used to determine the array size */ public static Generator<byte[]> byteArrays(Generator<Integer> size) { return new ByteArrayGenerator(size); }
492493494495496497498
* @param content * generator for the byte array content */ public static Generator<byte[]> byteArrays(Generator<Byte> content, Generator<Integer> size) { return new ByteArrayGenerator(content, size); }
506507508509510511512
517518519520521522523
531532533534535536537