class io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits
  super_class: java.lang.Object
{
  private final java.util.concurrent.TimeUnit defaultRate;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.TimeUnit defaultDuration;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.String, java.util.concurrent.TimeUnit> rateOverrides;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;

  private final java.util.Map<java.lang.String, java.util.concurrent.TimeUnit> durationOverrides;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;

  void <init>(java.util.concurrent.TimeUnit, java.util.concurrent.TimeUnit, java.util.Map<java.lang.String, java.util.concurrent.TimeUnit>, java.util.Map<java.lang.String, java.util.concurrent.TimeUnit>);
    descriptor: (Ljava/util/concurrent/TimeUnit;Ljava/util/concurrent/TimeUnit;Ljava/util/Map;Ljava/util/Map;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
        start local 1 // java.util.concurrent.TimeUnit defaultRate
        start local 2 // java.util.concurrent.TimeUnit defaultDuration
        start local 3 // java.util.Map rateOverrides
        start local 4 // java.util.Map durationOverrides
         0: .line 733
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 737
            aload 0 /* this */
            aload 1 /* defaultRate */
            putfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.defaultRate:Ljava/util/concurrent/TimeUnit;
         2: .line 738
            aload 0 /* this */
            aload 2 /* defaultDuration */
            putfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.defaultDuration:Ljava/util/concurrent/TimeUnit;
         3: .line 739
            aload 0 /* this */
            aload 3 /* rateOverrides */
            putfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.rateOverrides:Ljava/util/Map;
         4: .line 740
            aload 0 /* this */
            aload 4 /* durationOverrides */
            putfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.durationOverrides:Ljava/util/Map;
         5: .line 741
            return
        end local 4 // java.util.Map durationOverrides
        end local 3 // java.util.Map rateOverrides
        end local 2 // java.util.concurrent.TimeUnit defaultDuration
        end local 1 // java.util.concurrent.TimeUnit defaultRate
        end local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lio/vertx/ext/dropwizard/reporters/JmxReporter$MetricTimeUnits;
            0    6     1        defaultRate  Ljava/util/concurrent/TimeUnit;
            0    6     2    defaultDuration  Ljava/util/concurrent/TimeUnit;
            0    6     3      rateOverrides  Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;
            0    6     4  durationOverrides  Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;
    Signature: (Ljava/util/concurrent/TimeUnit;Ljava/util/concurrent/TimeUnit;Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;Ljava/util/Map<Ljava/lang/String;Ljava/util/concurrent/TimeUnit;>;)V
    MethodParameters:
                   Name  Flags
      defaultRate        
      defaultDuration    
      rateOverrides      
      durationOverrides  

  public java.util.concurrent.TimeUnit durationFor(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/concurrent/TimeUnit;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
        start local 1 // java.lang.String name
         0: .line 744
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.durationOverrides:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.durationOverrides:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.concurrent.TimeUnit
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.defaultDuration:Ljava/util/concurrent/TimeUnit;
      StackMap locals:
      StackMap stack: java.util.concurrent.TimeUnit
         2: areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/dropwizard/reporters/JmxReporter$MetricTimeUnits;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.concurrent.TimeUnit rateFor(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/concurrent/TimeUnit;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
        start local 1 // java.lang.String name
         0: .line 748
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.rateOverrides:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.rateOverrides:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.concurrent.TimeUnit
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits.defaultRate:Ljava/util/concurrent/TimeUnit;
      StackMap locals:
      StackMap stack: java.util.concurrent.TimeUnit
         2: areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/dropwizard/reporters/JmxReporter$MetricTimeUnits;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  
}
SourceFile: "JmxReporter.java"
NestHost: io.vertx.ext.dropwizard.reporters.JmxReporter
InnerClasses:
  private MetricTimeUnits = io.vertx.ext.dropwizard.reporters.JmxReporter$MetricTimeUnits of io.vertx.ext.dropwizard.reporters.JmxReporter