public class org.apache.commons.lang3.RandomUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.lang3.RandomUtils
  super_class: java.lang.Object
{
  private static final java.util.Random RANDOM;
    descriptor: Ljava/util/Random;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 32
            new java.util.Random
            dup
            invokespecial java.util.Random.<init>:()V
            putstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.lang3.RandomUtils this
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            return
        end local 0 // org.apache.commons.lang3.RandomUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/lang3/RandomUtils;

  public static boolean nextBoolean();
    descriptor: ()Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 59
            getstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            invokevirtual java.util.Random.nextBoolean:()Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static byte[] nextBytes(int);
    descriptor: (I)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // int count
         0: .line 73
            iload 0 /* count */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Count cannot be negative."
            iconst_0
            anewarray java.lang.Object
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         3: .line 75
            iload 0 /* count */
            newarray 8
            astore 1 /* result */
        start local 1 // byte[] result
         4: .line 76
            getstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            aload 1 /* result */
            invokevirtual java.util.Random.nextBytes:([B)V
         5: .line 77
            aload 1 /* result */
            areturn
        end local 1 // byte[] result
        end local 0 // int count
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0   count  I
            4    6     1  result  [B
    MethodParameters:
       Name  Flags
      count  final

  public static int nextInt(int, int);
    descriptor: (II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // int startInclusive
        start local 1 // int endExclusive
         0: .line 95
            iload 1 /* endExclusive */
            iload 0 /* startInclusive */
            if_icmplt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
         2: .line 96
      StackMap locals:
      StackMap stack: int
            ldc "Start value must be smaller or equal to end value."
            iconst_0
            anewarray java.lang.Object
         3: .line 95
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         4: .line 97
            iload 0 /* startInclusive */
            iflt 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ldc "Both range values must be non-negative."
            iconst_0
            anewarray java.lang.Object
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         7: .line 99
            iload 0 /* startInclusive */
            iload 1 /* endExclusive */
            if_icmpne 9
         8: .line 100
            iload 0 /* startInclusive */
            ireturn
         9: .line 103
      StackMap locals:
      StackMap stack:
            iload 0 /* startInclusive */
            getstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            iload 1 /* endExclusive */
            iload 0 /* startInclusive */
            isub
            invokevirtual java.util.Random.nextInt:(I)I
            iadd
            ireturn
        end local 1 // int endExclusive
        end local 0 // int startInclusive
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0  startInclusive  I
            0   10     1    endExclusive  I
    MethodParameters:
                Name  Flags
      startInclusive  final
      endExclusive    final

  public static int nextInt();
    descriptor: ()I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 114
            iconst_0
            ldc 2147483647
            invokestatic org.apache.commons.lang3.RandomUtils.nextInt:(II)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static long nextLong(long, long);
    descriptor: (JJ)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // long startInclusive
        start local 2 // long endExclusive
         0: .line 132
            lload 2 /* endExclusive */
            lload 0 /* startInclusive */
            lcmp
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
         2: .line 133
      StackMap locals:
      StackMap stack: int
            ldc "Start value must be smaller or equal to end value."
            iconst_0
            anewarray java.lang.Object
         3: .line 132
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         4: .line 134
            lload 0 /* startInclusive */
            lconst_0
            lcmp
            iflt 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ldc "Both range values must be non-negative."
            iconst_0
            anewarray java.lang.Object
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         7: .line 136
            lload 0 /* startInclusive */
            lload 2 /* endExclusive */
            lcmp
            ifne 9
         8: .line 137
            lload 0 /* startInclusive */
            lreturn
         9: .line 140
      StackMap locals:
      StackMap stack:
            lload 0 /* startInclusive */
            l2d
            lload 2 /* endExclusive */
            l2d
            invokestatic org.apache.commons.lang3.RandomUtils.nextDouble:(DD)D
            d2l
            lreturn
        end local 2 // long endExclusive
        end local 0 // long startInclusive
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0  startInclusive  J
            0   10     2    endExclusive  J
    MethodParameters:
                Name  Flags
      startInclusive  final
      endExclusive    final

  public static long nextLong();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 151
            lconst_0
            ldc 9223372036854775807
            invokestatic org.apache.commons.lang3.RandomUtils.nextLong:(JJ)J
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static double nextDouble(double, double);
    descriptor: (DD)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // double startInclusive
        start local 2 // double endInclusive
         0: .line 169
            dload 2 /* endInclusive */
            dload 0 /* startInclusive */
            dcmpl
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
         2: .line 170
      StackMap locals:
      StackMap stack: int
            ldc "Start value must be smaller or equal to end value."
            iconst_0
            anewarray java.lang.Object
         3: .line 169
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         4: .line 171
            dload 0 /* startInclusive */
            dconst_0
            dcmpl
            iflt 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ldc "Both range values must be non-negative."
            iconst_0
            anewarray java.lang.Object
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         7: .line 173
            dload 0 /* startInclusive */
            dload 2 /* endInclusive */
            dcmpl
            ifne 9
         8: .line 174
            dload 0 /* startInclusive */
            dreturn
         9: .line 177
      StackMap locals:
      StackMap stack:
            dload 0 /* startInclusive */
            dload 2 /* endInclusive */
            dload 0 /* startInclusive */
            dsub
            getstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            invokevirtual java.util.Random.nextDouble:()D
            dmul
            dadd
            dreturn
        end local 2 // double endInclusive
        end local 0 // double startInclusive
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0  startInclusive  D
            0   10     2    endInclusive  D
    MethodParameters:
                Name  Flags
      startInclusive  final
      endInclusive    final

  public static double nextDouble();
    descriptor: ()D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 188
            dconst_0
            ldc 1.7976931348623157E308
            invokestatic org.apache.commons.lang3.RandomUtils.nextDouble:(DD)D
            dreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static float nextFloat(float, float);
    descriptor: (FF)F
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // float startInclusive
        start local 1 // float endInclusive
         0: .line 206
            fload 1 /* endInclusive */
            fload 0 /* startInclusive */
            fcmpl
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
         2: .line 207
      StackMap locals:
      StackMap stack: int
            ldc "Start value must be smaller or equal to end value."
            iconst_0
            anewarray java.lang.Object
         3: .line 206
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         4: .line 208
            fload 0 /* startInclusive */
            fconst_0
            fcmpl
            iflt 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ldc "Both range values must be non-negative."
            iconst_0
            anewarray java.lang.Object
            invokestatic org.apache.commons.lang3.Validate.isTrue:(ZLjava/lang/String;[Ljava/lang/Object;)V
         7: .line 210
            fload 0 /* startInclusive */
            fload 1 /* endInclusive */
            fcmpl
            ifne 9
         8: .line 211
            fload 0 /* startInclusive */
            freturn
         9: .line 214
      StackMap locals:
      StackMap stack:
            fload 0 /* startInclusive */
            fload 1 /* endInclusive */
            fload 0 /* startInclusive */
            fsub
            getstatic org.apache.commons.lang3.RandomUtils.RANDOM:Ljava/util/Random;
            invokevirtual java.util.Random.nextFloat:()F
            fmul
            fadd
            freturn
        end local 1 // float endInclusive
        end local 0 // float startInclusive
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0  startInclusive  F
            0   10     1    endInclusive  F
    MethodParameters:
                Name  Flags
      startInclusive  final
      endInclusive    final

  public static float nextFloat();
    descriptor: ()F
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 225
            fconst_0
            ldc 3.4028235E38
            invokestatic org.apache.commons.lang3.RandomUtils.nextFloat:(FF)F
            freturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "RandomUtils.java"