public class org.apache.commons.math3.distribution.UniformIntegerDistribution extends org.apache.commons.math3.distribution.AbstractIntegerDistribution
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.distribution.UniformIntegerDistribution
  super_class: org.apache.commons.math3.distribution.AbstractIntegerDistribution
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20120109

  private final int lower;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int upper;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
        start local 1 // int lower
        start local 2 // int upper
         0: .line 58
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            iload 1 /* lower */
            iload 2 /* upper */
            invokespecial org.apache.commons.math3.distribution.UniformIntegerDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;II)V
         1: .line 59
            return
        end local 2 // int upper
        end local 1 // int lower
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            0    2     1  lower  I
            0    2     2  upper  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooLargeException
    MethodParameters:
       Name  Flags
      lower  
      upper  

  public void <init>(org.apache.commons.math3.random.RandomGenerator, int, int);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // int lower
        start local 3 // int upper
         0: .line 75
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractIntegerDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 77
            iload 2 /* lower */
            iload 3 /* upper */
            if_icmple 6
         2: .line 78
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
         3: .line 79
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LOWER_BOUND_NOT_BELOW_UPPER_BOUND:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         4: .line 80
            iload 2 /* lower */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iload 3 /* upper */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
         5: .line 78
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         6: .line 82
      StackMap locals: org.apache.commons.math3.distribution.UniformIntegerDistribution org.apache.commons.math3.random.RandomGenerator int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* lower */
            putfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
         7: .line 83
            aload 0 /* this */
            iload 3 /* upper */
            putfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
         8: .line 84
            return
        end local 3 // int upper
        end local 2 // int lower
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            0    9     1    rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    9     2  lower  I
            0    9     3  upper  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooLargeException
    MethodParameters:
       Name  Flags
      rng    
      lower  
      upper  

  public double probability(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
        start local 1 // int x
         0: .line 88
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            if_icmplt 1
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            if_icmple 2
         1: .line 89
      StackMap locals:
      StackMap stack:
            dconst_0
            dreturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            isub
            iconst_1
            iadd
            i2d
            ddiv
            dreturn
        end local 1 // int x
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            0    3     1     x  I
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
        start local 1 // int x
         0: .line 96
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            if_icmpge 2
         1: .line 97
            dconst_0
            dreturn
         2: .line 99
      StackMap locals:
      StackMap stack:
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            if_icmple 4
         3: .line 100
            dconst_1
            dreturn
         4: .line 102
      StackMap locals:
      StackMap stack:
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            isub
            i2d
            dconst_1
            dadd
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            isub
            i2d
            dconst_1
            dadd
            ddiv
            dreturn
        end local 1 // int x
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            0    5     1     x  I
    MethodParameters:
      Name  Flags
      x     

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 112
            ldc 0.5
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            iadd
            i2d
            dmul
            dreturn
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 122
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            isub
            iconst_1
            iadd
            i2d
            dstore 1 /* n */
        start local 1 // double n
         1: .line 123
            dload 1 /* n */
            dload 1 /* n */
            dmul
            dconst_1
            dsub
            ldc 12.0
            ddiv
            dreturn
        end local 1 // double n
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            1    2     1     n  D

  public int getSupportLowerBound();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 135
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            ireturn
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;

  public int getSupportUpperBound();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 147
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            ireturn
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;

  public boolean isSupportConnected();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 158
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;

  public int sample();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
         0: .line 164
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            isub
            iconst_1
            iadd
            istore 1 /* max */
        start local 1 // int max
         1: .line 165
            iload 1 /* max */
            ifgt 6
         2: .line 170
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextInt:()I
            istore 2 /* r */
        start local 2 // int r
         3: .line 171
            iload 2 /* r */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            if_icmplt 2
         4: .line 172
            iload 2 /* r */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.upper:I
            if_icmpgt 2
         5: .line 173
            iload 2 /* r */
            ireturn
        end local 2 // int r
         6: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.lower:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.UniformIntegerDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            iload 1 /* max */
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextInt:(I)I
            iadd
            ireturn
        end local 1 // int max
        end local 0 // org.apache.commons.math3.distribution.UniformIntegerDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/distribution/UniformIntegerDistribution;
            1    7     1   max  I
            3    6     2     r  I
}
SourceFile: "UniformIntegerDistribution.java"