public final class com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering<E extends java.lang.Enum<E>> extends com.google.common.util.concurrent.CycleDetectingLockFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering
  super_class: com.google.common.util.concurrent.CycleDetectingLockFactory
{
  private final java.util.Map<E, com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode> lockGraphNodes;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<TE;Lcom/google/common/util/concurrent/CycleDetectingLockFactory$LockGraphNode;>;

  void <init>(com.google.common.util.concurrent.CycleDetectingLockFactory$Policy, java.util.Map<E, com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode>);
    descriptor: (Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;Ljava/util/Map;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
        start local 1 // com.google.common.util.concurrent.CycleDetectingLockFactory$Policy policy
        start local 2 // java.util.Map lockGraphNodes
         0: .line 400
            aload 0 /* this */
            aload 1 /* policy */
            invokespecial com.google.common.util.concurrent.CycleDetectingLockFactory.<init>:(Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;)V
         1: .line 401
            aload 0 /* this */
            aload 2 /* lockGraphNodes */
            putfield com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.lockGraphNodes:Ljava/util/Map;
         2: .line 402
            return
        end local 2 // java.util.Map lockGraphNodes
        end local 1 // com.google.common.util.concurrent.CycleDetectingLockFactory$Policy policy
        end local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$WithExplicitOrdering<TE;>;
            0    3     1          policy  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;
            0    3     2  lockGraphNodes  Ljava/util/Map<TE;Lcom/google/common/util/concurrent/CycleDetectingLockFactory$LockGraphNode;>;
    Signature: (Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;Ljava/util/Map<TE;Lcom/google/common/util/concurrent/CycleDetectingLockFactory$LockGraphNode;>;)V
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()
    MethodParameters:
                Name  Flags
      policy          
      lockGraphNodes  

  public java.util.concurrent.locks.ReentrantLock newReentrantLock(E);
    descriptor: (Ljava/lang/Enum;)Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
        start local 1 // java.lang.Enum rank
         0: .line 406
            aload 0 /* this */
            aload 1 /* rank */
            iconst_0
            invokevirtual com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.newReentrantLock:(Ljava/lang/Enum;Z)Ljava/util/concurrent/locks/ReentrantLock;
            areturn
        end local 1 // java.lang.Enum rank
        end local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$WithExplicitOrdering<TE;>;
            0    1     1  rank  TE;
    Signature: (TE;)Ljava/util/concurrent/locks/ReentrantLock;
    MethodParameters:
      Name  Flags
      rank  

  public java.util.concurrent.locks.ReentrantLock newReentrantLock(E, boolean);
    descriptor: (Ljava/lang/Enum;Z)Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
        start local 1 // java.lang.Enum rank
        start local 2 // boolean fair
         0: .line 418
            aload 0 /* this */
            getfield com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.policy:Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;
            getstatic com.google.common.util.concurrent.CycleDetectingLockFactory$Policies.DISABLED:Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policies;
            if_acmpne 2
         1: .line 419
            new java.util.concurrent.locks.ReentrantLock
            dup
            iload 2 /* fair */
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:(Z)V
            goto 3
         2: .line 420
      StackMap locals:
      StackMap stack:
            new com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantLock
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.lockGraphNodes:Ljava/util/Map;
            aload 1 /* rank */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode
            iload 2 /* fair */
            invokespecial com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantLock.<init>:(Lcom/google/common/util/concurrent/CycleDetectingLockFactory;Lcom/google/common/util/concurrent/CycleDetectingLockFactory$LockGraphNode;Z)V
         3: .line 418
      StackMap locals:
      StackMap stack: java.util.concurrent.locks.ReentrantLock
            areturn
        end local 2 // boolean fair
        end local 1 // java.lang.Enum rank
        end local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$WithExplicitOrdering<TE;>;
            0    4     1  rank  TE;
            0    4     2  fair  Z
    Signature: (TE;Z)Ljava/util/concurrent/locks/ReentrantLock;
    MethodParameters:
      Name  Flags
      rank  
      fair  

  public java.util.concurrent.locks.ReentrantReadWriteLock newReentrantReadWriteLock(E);
    descriptor: (Ljava/lang/Enum;)Ljava/util/concurrent/locks/ReentrantReadWriteLock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
        start local 1 // java.lang.Enum rank
         0: .line 425
            aload 0 /* this */
            aload 1 /* rank */
            iconst_0
            invokevirtual com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.newReentrantReadWriteLock:(Ljava/lang/Enum;Z)Ljava/util/concurrent/locks/ReentrantReadWriteLock;
            areturn
        end local 1 // java.lang.Enum rank
        end local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$WithExplicitOrdering<TE;>;
            0    1     1  rank  TE;
    Signature: (TE;)Ljava/util/concurrent/locks/ReentrantReadWriteLock;
    MethodParameters:
      Name  Flags
      rank  

  public java.util.concurrent.locks.ReentrantReadWriteLock newReentrantReadWriteLock(E, boolean);
    descriptor: (Ljava/lang/Enum;Z)Ljava/util/concurrent/locks/ReentrantReadWriteLock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
        start local 1 // java.lang.Enum rank
        start local 2 // boolean fair
         0: .line 437
            aload 0 /* this */
            getfield com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.policy:Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policy;
            getstatic com.google.common.util.concurrent.CycleDetectingLockFactory$Policies.DISABLED:Lcom/google/common/util/concurrent/CycleDetectingLockFactory$Policies;
            if_acmpne 2
         1: .line 438
            new java.util.concurrent.locks.ReentrantReadWriteLock
            dup
            iload 2 /* fair */
            invokespecial java.util.concurrent.locks.ReentrantReadWriteLock.<init>:(Z)V
            goto 3
         2: .line 439
      StackMap locals:
      StackMap stack:
            new com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantReadWriteLock
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering.lockGraphNodes:Ljava/util/Map;
            aload 1 /* rank */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode
            iload 2 /* fair */
            invokespecial com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantReadWriteLock.<init>:(Lcom/google/common/util/concurrent/CycleDetectingLockFactory;Lcom/google/common/util/concurrent/CycleDetectingLockFactory$LockGraphNode;Z)V
         3: .line 437
      StackMap locals:
      StackMap stack: java.util.concurrent.locks.ReentrantReadWriteLock
            areturn
        end local 2 // boolean fair
        end local 1 // java.lang.Enum rank
        end local 0 // com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/google/common/util/concurrent/CycleDetectingLockFactory$WithExplicitOrdering<TE;>;
            0    4     1  rank  TE;
            0    4     2  fair  Z
    Signature: (TE;Z)Ljava/util/concurrent/locks/ReentrantReadWriteLock;
    MethodParameters:
      Name  Flags
      rank  
      fair  
}
Signature: <E:Ljava/lang/Enum<TE;>;>Lcom/google/common/util/concurrent/CycleDetectingLockFactory;
SourceFile: "CycleDetectingLockFactory.java"
NestHost: com.google.common.util.concurrent.CycleDetectingLockFactory
InnerClasses:
  final CycleDetectingReentrantLock = com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantLock of com.google.common.util.concurrent.CycleDetectingLockFactory
  final CycleDetectingReentrantReadWriteLock = com.google.common.util.concurrent.CycleDetectingLockFactory$CycleDetectingReentrantReadWriteLock of com.google.common.util.concurrent.CycleDetectingLockFactory
  private LockGraphNode = com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode of com.google.common.util.concurrent.CycleDetectingLockFactory
  public abstract Policies = com.google.common.util.concurrent.CycleDetectingLockFactory$Policies of com.google.common.util.concurrent.CycleDetectingLockFactory
  public abstract Policy = com.google.common.util.concurrent.CycleDetectingLockFactory$Policy of com.google.common.util.concurrent.CycleDetectingLockFactory
  public final WithExplicitOrdering = com.google.common.util.concurrent.CycleDetectingLockFactory$WithExplicitOrdering of com.google.common.util.concurrent.CycleDetectingLockFactory
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()