Package net.java.quickcheck.generator.support

Examples of net.java.quickcheck.generator.support.ByteGenerator


   * Create a new byte generator which creates byte values ranging from
   * {@link Byte#MIN_VALUE} to {@link Byte#MAX_VALUE}.
   *
   */
  public static Generator<Byte> bytes() {
    return new ByteGenerator();
  }
View Full Code Here


  /**
   * Create a new byte generator which creates byte values ranging from lo to
   * hi.
   */
  public static Generator<Byte> bytes(byte lo, byte hi) {
    return new ByteGenerator(lo, hi);
  }
View Full Code Here

   * Create a new integer generator which creates integers ranging from lo to
   * hi based on the given {@link Distribution}.
   */
  public static Generator<Byte> bytes(byte lo, byte hi,
      Distribution distribution) {
    return new ByteGenerator(lo, hi, distribution);
  }
View Full Code Here

   * Create a new byte generator which creates byte values ranging from
   * {@link Byte#MIN_VALUE} to {@link Byte#MAX_VALUE}.
   *
   */
  public static Generator<Byte> bytes() {
    return new ByteGenerator();
  }
View Full Code Here

  /**
   * Create a new byte generator which creates byte values ranging from lo to
   * hi.
   */
  public static Generator<Byte> bytes(byte lo, byte hi) {
    return new ByteGenerator(lo, hi);
  }
View Full Code Here

   * Create a new integer generator which creates integers ranging from lo to
   * hi based on the given {@link Distribution}.
   */
  public static Generator<Byte> bytes(byte lo, byte hi,
      Distribution distribution) {
    return new ByteGenerator(lo, hi, distribution);
  }
View Full Code Here

TOP

Related Classes of net.java.quickcheck.generator.support.ByteGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.