public abstract class com.google.common.util.concurrent.Monitor$Guard
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.util.concurrent.Monitor$Guard
  super_class: java.lang.Object
{
  final com.google.common.util.concurrent.Monitor monitor;
    descriptor: Lcom/google/common/util/concurrent/Monitor;
    flags: (0x0010) ACC_FINAL
    RuntimeInvisibleAnnotations: 
      com.google.j2objc.annotations.Weak()

  final java.util.concurrent.locks.Condition condition;
    descriptor: Ljava/util/concurrent/locks/Condition;
    flags: (0x0010) ACC_FINAL

  int waiterCount;
    descriptor: I
    flags: (0x0000) 
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "monitor.lock")

  com.google.common.util.concurrent.Monitor$Guard next;
    descriptor: Lcom/google/common/util/concurrent/Monitor$Guard;
    flags: (0x0000) 
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "monitor.lock")
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  protected void <init>(com.google.common.util.concurrent.Monitor);
    descriptor: (Lcom/google/common/util/concurrent/Monitor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.util.concurrent.Monitor$Guard this
        start local 1 // com.google.common.util.concurrent.Monitor monitor
         0: .line 326
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 319
            aload 0 /* this */
            iconst_0
            putfield com.google.common.util.concurrent.Monitor$Guard.waiterCount:I
         2: .line 327
            aload 0 /* this */
            aload 1 /* monitor */
            ldc "monitor"
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.util.concurrent.Monitor
            putfield com.google.common.util.concurrent.Monitor$Guard.monitor:Lcom/google/common/util/concurrent/Monitor;
         3: .line 328
            aload 0 /* this */
            aload 1 /* monitor */
            getfield com.google.common.util.concurrent.Monitor.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.newCondition:()Ljava/util/concurrent/locks/Condition;
            putfield com.google.common.util.concurrent.Monitor$Guard.condition:Ljava/util/concurrent/locks/Condition;
         4: .line 329
            return
        end local 1 // com.google.common.util.concurrent.Monitor monitor
        end local 0 // com.google.common.util.concurrent.Monitor$Guard this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/google/common/util/concurrent/Monitor$Guard;
            0    5     1  monitor  Lcom/google/common/util/concurrent/Monitor;
    MethodParameters:
         Name  Flags
      monitor  

  public abstract boolean isSatisfied();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Monitor.java"
NestHost: com.google.common.util.concurrent.Monitor
InnerClasses:
  public abstract Guard = com.google.common.util.concurrent.Monitor$Guard of com.google.common.util.concurrent.Monitor
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()