public class org.ehcache.core.statistics.LatencyHistogramConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.ehcache.core.statistics.LatencyHistogramConfiguration
  super_class: java.lang.Object
{
  public static final double DEFAULT_PHI;
    descriptor: D
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.63

  public static final int DEFAULT_BUCKET_COUNT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  public static final java.time.Duration DEFAULT_WINDOW;
    descriptor: Ljava/time/Duration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.ehcache.core.statistics.LatencyHistogramConfiguration DEFAULT;
    descriptor: Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final double phi;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.time.Duration window;
    descriptor: Ljava/time/Duration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=0, args_size=0
         0: .line 28
            lconst_1
            invokestatic java.time.Duration.ofMinutes:(J)Ljava/time/Duration;
            putstatic org.ehcache.core.statistics.LatencyHistogramConfiguration.DEFAULT_WINDOW:Ljava/time/Duration;
         1: .line 30
            new org.ehcache.core.statistics.LatencyHistogramConfiguration
            dup
            ldc 0.63
            bipush 20
            getstatic org.ehcache.core.statistics.LatencyHistogramConfiguration.DEFAULT_WINDOW:Ljava/time/Duration;
            invokespecial org.ehcache.core.statistics.LatencyHistogramConfiguration.<init>:(DILjava/time/Duration;)V
            putstatic org.ehcache.core.statistics.LatencyHistogramConfiguration.DEFAULT:Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(double, int, java.time.Duration);
    descriptor: (DILjava/time/Duration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
        start local 1 // double phi
        start local 3 // int bucketCount
        start local 4 // java.time.Duration window
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            dload 1 /* phi */
            putfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
         2: .line 45
            aload 0 /* this */
            iload 3 /* bucketCount */
            putfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
         3: .line 46
            aload 0 /* this */
            aload 4 /* window */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.time.Duration
            putfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
         4: .line 47
            return
        end local 4 // java.time.Duration window
        end local 3 // int bucketCount
        end local 1 // double phi
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
            0    5     1          phi  D
            0    5     3  bucketCount  I
            0    5     4       window  Ljava/time/Duration;
    MethodParameters:
             Name  Flags
      phi          
      bucketCount  
      window       

  public double getPhi();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
         0: .line 50
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
            dreturn
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;

  public int getBucketCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
         0: .line 54
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
            ireturn
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;

  public java.time.Duration getWindow();
    descriptor: ()Ljava/time/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
         0: .line 58
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
            areturn
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
         0: .line 63
            new java.lang.StringBuilder
            dup
            ldc "LatencyHistogramConfiguration{phi="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 64
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         2: .line 65
            ldc ", bucketCount="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 66
            ldc ", window="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 67
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         5: .line 63
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
        start local 1 // java.lang.Object o
         0: .line 72
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 73
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 75
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.ehcache.core.statistics.LatencyHistogramConfiguration
            astore 2 /* that */
        start local 2 // org.ehcache.core.statistics.LatencyHistogramConfiguration that
         4: .line 77
            aload 2 /* that */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
            dcmpl
            ifeq 5
            iconst_0
            ireturn
         5: .line 78
      StackMap locals: org.ehcache.core.statistics.LatencyHistogramConfiguration
      StackMap stack:
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
            aload 2 /* that */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
            aload 2 /* that */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
            invokevirtual java.time.Duration.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // org.ehcache.core.statistics.LatencyHistogramConfiguration that
        end local 1 // java.lang.Object o
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
            0    7     1     o  Ljava/lang/Object;
            4    7     2  that  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
         0: .line 86
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.phi:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 2 /* temp */
        start local 2 // long temp
         1: .line 87
            lload 2 /* temp */
            lload 2 /* temp */
            bipush 32
            lushr
            lxor
            l2i
            istore 1 /* result */
        start local 1 // int result
         2: .line 88
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.bucketCount:I
            iadd
            istore 1 /* result */
         3: .line 89
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.ehcache.core.statistics.LatencyHistogramConfiguration.window:Ljava/time/Duration;
            invokevirtual java.time.Duration.hashCode:()I
            iadd
            istore 1 /* result */
         4: .line 90
            iload 1 /* result */
            ireturn
        end local 2 // long temp
        end local 1 // int result
        end local 0 // org.ehcache.core.statistics.LatencyHistogramConfiguration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/ehcache/core/statistics/LatencyHistogramConfiguration;
            2    5     1  result  I
            1    5     2    temp  J
}
SourceFile: "LatencyHistogramConfiguration.java"