class org.ehcache.expiry.Expirations$BaseExpiry<K, V> implements org.ehcache.expiry.Expiry<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.ehcache.expiry.Expirations$BaseExpiry
  super_class: java.lang.Object
{
  private final org.ehcache.expiry.Duration create;
    descriptor: Lorg/ehcache/expiry/Duration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.ehcache.expiry.Duration access;
    descriptor: Lorg/ehcache/expiry/Duration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.ehcache.expiry.Duration update;
    descriptor: Lorg/ehcache/expiry/Duration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.ehcache.expiry.Duration, org.ehcache.expiry.Duration, org.ehcache.expiry.Duration);
    descriptor: (Lorg/ehcache/expiry/Duration;Lorg/ehcache/expiry/Duration;Lorg/ehcache/expiry/Duration;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
        start local 1 // org.ehcache.expiry.Duration create
        start local 2 // org.ehcache.expiry.Duration access
        start local 3 // org.ehcache.expiry.Duration update
         0: .line 100
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 101
            aload 0 /* this */
            aload 1 /* create */
            putfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
         2: .line 102
            aload 0 /* this */
            aload 2 /* access */
            putfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
         3: .line 103
            aload 0 /* this */
            aload 3 /* update */
            putfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
         4: .line 104
            return
        end local 3 // org.ehcache.expiry.Duration update
        end local 2 // org.ehcache.expiry.Duration access
        end local 1 // org.ehcache.expiry.Duration create
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            0    5     1  create  Lorg/ehcache/expiry/Duration;
            0    5     2  access  Lorg/ehcache/expiry/Duration;
            0    5     3  update  Lorg/ehcache/expiry/Duration;
    MethodParameters:
        Name  Flags
      create  
      access  
      update  

  public org.ehcache.expiry.Duration getExpiryForCreation(K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/ehcache/expiry/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 108
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            0    1     1    key  TK;
            0    1     2  value  TV;
    Signature: (TK;TV;)Lorg/ehcache/expiry/Duration;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.ehcache.expiry.Duration getExpiryForAccess(K, org.ehcache.ValueSupplier<? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/ehcache/ValueSupplier;)Lorg/ehcache/expiry/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
        start local 1 // java.lang.Object key
        start local 2 // org.ehcache.ValueSupplier value
         0: .line 113
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
            areturn
        end local 2 // org.ehcache.ValueSupplier value
        end local 1 // java.lang.Object key
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            0    1     1    key  TK;
            0    1     2  value  Lorg/ehcache/ValueSupplier<+TV;>;
    Signature: (TK;Lorg/ehcache/ValueSupplier<+TV;>;)Lorg/ehcache/expiry/Duration;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.ehcache.expiry.Duration getExpiryForUpdate(K, org.ehcache.ValueSupplier<? extends V>, V);
    descriptor: (Ljava/lang/Object;Lorg/ehcache/ValueSupplier;Ljava/lang/Object;)Lorg/ehcache/expiry/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
        start local 1 // java.lang.Object key
        start local 2 // org.ehcache.ValueSupplier oldValue
        start local 3 // java.lang.Object newValue
         0: .line 118
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
            areturn
        end local 3 // java.lang.Object newValue
        end local 2 // org.ehcache.ValueSupplier oldValue
        end local 1 // java.lang.Object key
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            0    1     1       key  TK;
            0    1     2  oldValue  Lorg/ehcache/ValueSupplier<+TV;>;
            0    1     3  newValue  TV;
    Signature: (TK;Lorg/ehcache/ValueSupplier<+TV;>;TV;)Lorg/ehcache/expiry/Duration;
    MethodParameters:
          Name  Flags
      key       
      oldValue  
      newValue  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
        start local 1 // java.lang.Object o
         0: .line 123
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 124
      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 126
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.ehcache.expiry.Expirations$BaseExpiry
            astore 2 /* that */
        start local 2 // org.ehcache.expiry.Expirations$BaseExpiry that
         4: .line 128
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
            aload 2 /* that */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 5
            iconst_0
            ireturn
         5: .line 129
      StackMap locals: org.ehcache.expiry.Expirations$BaseExpiry
      StackMap stack:
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
            aload 2 /* that */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 6
            iconst_0
            ireturn
         6: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
            aload 2 /* that */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 7
            iconst_0
            ireturn
         7: .line 132
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.ehcache.expiry.Expirations$BaseExpiry that
        end local 1 // java.lang.Object o
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            0    8     1     o  Ljava/lang/Object;
            4    8     2  that  Lorg/ehcache/expiry/Expirations$BaseExpiry<**>;
    MethodParameters:
      Name  Flags
      o     final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
         0: .line 137
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            istore 1 /* result */
        start local 1 // int result
         1: .line 138
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* result */
         2: .line 139
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* result */
         3: .line 140
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
            1    4     1  result  I

  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.expiry.Expirations$BaseExpiry this
         0: .line 145
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 146
            ldc "create="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.create:Lorg/ehcache/expiry/Duration;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 147
            ldc ", access="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.access:Lorg/ehcache/expiry/Duration;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 148
            ldc ", update="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.ehcache.expiry.Expirations$BaseExpiry.update:Lorg/ehcache/expiry/Duration;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 149
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         5: .line 145
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.ehcache.expiry.Expirations$BaseExpiry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/ehcache/expiry/Expirations$BaseExpiry<TK;TV;>;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lorg/ehcache/expiry/Expiry<TK;TV;>;
SourceFile: "Expirations.java"
NestHost: org.ehcache.expiry.Expirations
InnerClasses:
  private BaseExpiry = org.ehcache.expiry.Expirations$BaseExpiry of org.ehcache.expiry.Expirations
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()