public final class sun.nio.ch.SelectionKeyImpl extends java.nio.channels.spi.AbstractSelectionKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.nio.ch.SelectionKeyImpl
  super_class: java.nio.channels.spi.AbstractSelectionKey
{
  private static final java.lang.invoke.VarHandle INTERESTOPS;
    descriptor: Ljava/lang/invoke/VarHandle;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final sun.nio.ch.SelChImpl channel;
    descriptor: Lsun/nio/ch/SelChImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final sun.nio.ch.SelectorImpl selector;
    descriptor: Lsun/nio/ch/SelectorImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile int interestOps;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile int readyOps;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private int registeredEvents;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int index;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  int lastPolled;
    descriptor: I
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 47
            invokestatic java.lang.invoke.MethodHandles.lookup:()Ljava/lang/invoke/MethodHandles$Lookup;
         1: .line 48
            ldc "interestOps"
         2: .line 49
            ldc Ljava/lang/invoke/VarHandle;
         3: .line 50
            ldc Lsun/nio/ch/SelectionKeyImpl;
            getstatic java.lang.Integer.TYPE:Ljava/lang/Class;
         4: .line 46
            invokestatic java.lang.invoke.ConstantBootstraps.fieldVarHandle:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;
         5: .line 45
            putstatic sun.nio.ch.SelectionKeyImpl.INTERESTOPS:Ljava/lang/invoke/VarHandle;
         6: .line 50
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(sun.nio.ch.SelChImpl, sun.nio.ch.SelectorImpl);
    descriptor: (Lsun/nio/ch/SelChImpl;Lsun/nio/ch/SelectorImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // sun.nio.ch.SelChImpl ch
        start local 2 // sun.nio.ch.SelectorImpl sel
         0: .line 64
            aload 0 /* this */
            invokespecial java.nio.channels.spi.AbstractSelectionKey.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 1 /* ch */
            putfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
         2: .line 66
            aload 0 /* this */
            aload 2 /* sel */
            putfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
         3: .line 67
            return
        end local 2 // sun.nio.ch.SelectorImpl sel
        end local 1 // sun.nio.ch.SelChImpl ch
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    4     1    ch  Lsun/nio/ch/SelChImpl;
            0    4     2   sel  Lsun/nio/ch/SelectorImpl;
    MethodParameters:
      Name  Flags
      ch    
      sel   

  private void ensureValid();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 70
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.isValid:()Z
            ifne 2
         1: .line 71
            new java.nio.channels.CancelledKeyException
            dup
            invokespecial java.nio.channels.CancelledKeyException.<init>:()V
            athrow
         2: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/ch/SelectionKeyImpl;

  int getFDVal();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 75
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            invokeinterface sun.nio.ch.SelChImpl.getFDVal:()I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public java.nio.channels.SelectableChannel channel();
    descriptor: ()Ljava/nio/channels/SelectableChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 80
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            checkcast java.nio.channels.SelectableChannel
            areturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public java.nio.channels.Selector selector();
    descriptor: ()Ljava/nio/channels/Selector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 85
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            areturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public int interestOps();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 90
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.ensureValid:()V
         1: .line 91
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.interestOps:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public java.nio.channels.SelectionKey interestOps(int);
    descriptor: (I)Ljava/nio/channels/SelectionKey;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 96
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.ensureValid:()V
         1: .line 97
            iload 1 /* ops */
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.channel:()Ljava/nio/channels/SelectableChannel;
            invokevirtual java.nio.channels.SelectableChannel.validOps:()I
            iconst_m1
            ixor
            iand
            ifeq 3
         2: .line 98
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         3: .line 99
      StackMap locals:
      StackMap stack:
            getstatic sun.nio.ch.SelectionKeyImpl.INTERESTOPS:Ljava/lang/invoke/VarHandle;
            aload 0 /* this */
            iload 1 /* ops */
            invokevirtual java.lang.invoke.VarHandle.getAndSet:(Lsun/nio/ch/SelectionKeyImpl;I)I
            istore 2 /* oldOps */
        start local 2 // int oldOps
         4: .line 100
            iload 1 /* ops */
            iload 2 /* oldOps */
            if_icmpeq 6
         5: .line 101
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectorImpl.setEventOps:(Lsun/nio/ch/SelectionKeyImpl;)V
         6: .line 103
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // int oldOps
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/nio/ch/SelectionKeyImpl;
            0    7     1     ops  I
            4    7     2  oldOps  I
    MethodParameters:
      Name  Flags
      ops   

  public int interestOpsOr(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 108
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.ensureValid:()V
         1: .line 109
            iload 1 /* ops */
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.channel:()Ljava/nio/channels/SelectableChannel;
            invokevirtual java.nio.channels.SelectableChannel.validOps:()I
            iconst_m1
            ixor
            iand
            ifeq 3
         2: .line 110
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         3: .line 111
      StackMap locals:
      StackMap stack:
            getstatic sun.nio.ch.SelectionKeyImpl.INTERESTOPS:Ljava/lang/invoke/VarHandle;
            aload 0 /* this */
            iload 1 /* ops */
            invokevirtual java.lang.invoke.VarHandle.getAndBitwiseOr:(Lsun/nio/ch/SelectionKeyImpl;I)I
            istore 2 /* oldVal */
        start local 2 // int oldVal
         4: .line 112
            iload 2 /* oldVal */
            iload 2 /* oldVal */
            iload 1 /* ops */
            ior
            if_icmpeq 6
         5: .line 113
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectorImpl.setEventOps:(Lsun/nio/ch/SelectionKeyImpl;)V
         6: .line 115
      StackMap locals: int
      StackMap stack:
            iload 2 /* oldVal */
            ireturn
        end local 2 // int oldVal
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/nio/ch/SelectionKeyImpl;
            0    7     1     ops  I
            4    7     2  oldVal  I
    MethodParameters:
      Name  Flags
      ops   

  public int interestOpsAnd(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 120
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.ensureValid:()V
         1: .line 121
            getstatic sun.nio.ch.SelectionKeyImpl.INTERESTOPS:Ljava/lang/invoke/VarHandle;
            aload 0 /* this */
            iload 1 /* ops */
            invokevirtual java.lang.invoke.VarHandle.getAndBitwiseAnd:(Lsun/nio/ch/SelectionKeyImpl;I)I
            istore 2 /* oldVal */
        start local 2 // int oldVal
         2: .line 122
            iload 2 /* oldVal */
            iload 2 /* oldVal */
            iload 1 /* ops */
            iand
            if_icmpeq 4
         3: .line 123
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectorImpl.setEventOps:(Lsun/nio/ch/SelectionKeyImpl;)V
         4: .line 125
      StackMap locals: int
      StackMap stack:
            iload 2 /* oldVal */
            ireturn
        end local 2 // int oldVal
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lsun/nio/ch/SelectionKeyImpl;
            0    5     1     ops  I
            2    5     2  oldVal  I
    MethodParameters:
      Name  Flags
      ops   

  public int readyOps();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 130
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.ensureValid:()V
         1: .line 131
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.readyOps:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public void nioReadyOps(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 138
            aload 0 /* this */
            iload 1 /* ops */
            putfield sun.nio.ch.SelectionKeyImpl.readyOps:I
         1: .line 139
            return
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    2     1   ops  I
    MethodParameters:
      Name  Flags
      ops   

  public int nioReadyOps();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 142
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.readyOps:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  public java.nio.channels.SelectionKey nioInterestOps(int);
    descriptor: (I)Ljava/nio/channels/SelectionKey;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 146
            iload 1 /* ops */
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.channel:()Ljava/nio/channels/SelectableChannel;
            invokevirtual java.nio.channels.SelectableChannel.validOps:()I
            iconst_m1
            ixor
            iand
            ifeq 2
         1: .line 147
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* ops */
            putfield sun.nio.ch.SelectionKeyImpl.interestOps:I
         3: .line 149
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectorImpl.setEventOps:(Lsun/nio/ch/SelectionKeyImpl;)V
         4: .line 150
            aload 0 /* this */
            areturn
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    5     1   ops  I
    MethodParameters:
      Name  Flags
      ops   

  public int nioInterestOps();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 154
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.interestOps:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  int translateInterestOps();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 158
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.interestOps:I
            invokeinterface sun.nio.ch.SelChImpl.translateInterestOps:(I)I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  boolean translateAndSetReadyOps(int);
    descriptor: (I)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 162
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 1 /* ops */
            aload 0 /* this */
            invokeinterface sun.nio.ch.SelChImpl.translateAndSetReadyOps:(ILsun/nio/ch/SelectionKeyImpl;)Z
            ireturn
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    1     1   ops  I
    MethodParameters:
      Name  Flags
      ops   

  boolean translateAndUpdateReadyOps(int);
    descriptor: (I)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int ops
         0: .line 166
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 1 /* ops */
            aload 0 /* this */
            invokeinterface sun.nio.ch.SelChImpl.translateAndUpdateReadyOps:(ILsun/nio/ch/SelectionKeyImpl;)Z
            ireturn
        end local 1 // int ops
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    1     1   ops  I
    MethodParameters:
      Name  Flags
      ops   

  void registeredEvents(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int events
         0: .line 171
            aload 0 /* this */
            iload 1 /* events */
            putfield sun.nio.ch.SelectionKeyImpl.registeredEvents:I
         1: .line 172
            return
        end local 1 // int events
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/nio/ch/SelectionKeyImpl;
            0    2     1  events  I
    MethodParameters:
        Name  Flags
      events  

  int registeredEvents();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 176
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.registeredEvents:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  int getIndex();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 180
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.index:I
            ireturn
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectionKeyImpl;

  void setIndex(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectionKeyImpl this
        start local 1 // int i
         0: .line 184
            aload 0 /* this */
            iload 1 /* i */
            putfield sun.nio.ch.SelectionKeyImpl.index:I
         1: .line 185
            return
        end local 1 // int i
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/SelectionKeyImpl;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.nio.ch.SelectionKeyImpl this
         0: .line 189
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 190
            aload 1 /* sb */
            ldc "channel="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 191
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 192
            ldc ", selector="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 193
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.selector:Lsun/nio/ch/SelectorImpl;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         5: .line 194
            aload 0 /* this */
            invokevirtual sun.nio.ch.SelectionKeyImpl.isValid:()Z
            ifeq 11
         6: .line 195
            aload 1 /* sb */
            ldc ", interestOps="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 196
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.interestOps:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         8: .line 197
            ldc ", readyOps="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         9: .line 198
            aload 0 /* this */
            getfield sun.nio.ch.SelectionKeyImpl.readyOps:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        10: .line 199
            goto 12
        11: .line 200
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 1 /* sb */
            ldc ", invalid"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 202
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // sun.nio.ch.SelectionKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/nio/ch/SelectionKeyImpl;
            1   13     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "SelectionKeyImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles