public abstract class sun.nio.ch.SelectorProviderImpl extends java.nio.channels.spi.SelectorProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.nio.ch.SelectorProviderImpl
  super_class: java.nio.channels.spi.SelectorProvider
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 41
            aload 0 /* this */
            invokespecial java.nio.channels.spi.SelectorProvider.<init>:()V
            return
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;

  public java.nio.channels.DatagramChannel openDatagramChannel();
    descriptor: ()Ljava/nio/channels/DatagramChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 46
            new sun.nio.ch.DatagramChannelImpl
            dup
            aload 0 /* this */
            iconst_1
            invokespecial sun.nio.ch.DatagramChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Z)V
            areturn
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.DatagramChannel openUninterruptibleDatagramChannel();
    descriptor: ()Ljava/nio/channels/DatagramChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 54
            new sun.nio.ch.DatagramChannelImpl
            dup
            aload 0 /* this */
            iconst_0
            invokespecial sun.nio.ch.DatagramChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Z)V
            areturn
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.DatagramChannel openDatagramChannel(java.net.ProtocolFamily);
    descriptor: (Ljava/net/ProtocolFamily;)Ljava/nio/channels/DatagramChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectorProviderImpl this
        start local 1 // java.net.ProtocolFamily family
         0: .line 59
            new sun.nio.ch.DatagramChannelImpl
            dup
            aload 0 /* this */
            aload 1 /* family */
            iconst_1
            invokespecial sun.nio.ch.DatagramChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;Z)V
            areturn
        end local 1 // java.net.ProtocolFamily family
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lsun/nio/ch/SelectorProviderImpl;
            0    1     1  family  Ljava/net/ProtocolFamily;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      family  

  public java.nio.channels.Pipe openPipe();
    descriptor: ()Ljava/nio/channels/Pipe;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 64
            new sun.nio.ch.PipeImpl
            dup
            aload 0 /* this */
            invokespecial sun.nio.ch.PipeImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;)V
            areturn
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;
    Exceptions:
      throws java.io.IOException

  public abstract java.nio.channels.spi.AbstractSelector openSelector();
    descriptor: ()Ljava/nio/channels/spi/AbstractSelector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.ServerSocketChannel openServerSocketChannel();
    descriptor: ()Ljava/nio/channels/ServerSocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 72
            new sun.nio.ch.ServerSocketChannelImpl
            dup
            aload 0 /* this */
            invokespecial sun.nio.ch.ServerSocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;)V
            areturn
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.SocketChannel openSocketChannel();
    descriptor: ()Ljava/nio/channels/SocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.nio.ch.SelectorProviderImpl this
         0: .line 77
            new sun.nio.ch.SocketChannelImpl
            dup
            aload 0 /* this */
            invokespecial sun.nio.ch.SocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;)V
            areturn
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/SelectorProviderImpl;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.SocketChannel openSocketChannel(java.net.ProtocolFamily);
    descriptor: (Ljava/net/ProtocolFamily;)Ljava/nio/channels/SocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectorProviderImpl this
        start local 1 // java.net.ProtocolFamily family
         0: .line 82
            aload 1 /* family */
            ldc "'family' is null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 83
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET6:Ljava/net/StandardProtocolFamily;
            if_acmpne 3
            invokestatic sun.nio.ch.Net.isIPv6Available:()Z
            ifne 3
         2: .line 84
            new java.lang.UnsupportedOperationException
            dup
            ldc "IPv6 not available"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 85
      StackMap locals:
      StackMap stack:
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET:Ljava/net/StandardProtocolFamily;
            if_acmpeq 4
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET6:Ljava/net/StandardProtocolFamily;
            if_acmpne 5
         4: .line 86
      StackMap locals:
      StackMap stack:
            new sun.nio.ch.SocketChannelImpl
            dup
            aload 0 /* this */
            aload 1 /* family */
            invokespecial sun.nio.ch.SocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;)V
            areturn
         5: .line 87
      StackMap locals:
      StackMap stack:
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.UNIX:Ljava/net/StandardProtocolFamily;
            if_acmpne 7
            invokestatic sun.nio.ch.UnixDomainSockets.isSupported:()Z
            ifeq 7
         6: .line 88
            new sun.nio.ch.SocketChannelImpl
            dup
            aload 0 /* this */
            aload 1 /* family */
            invokespecial sun.nio.ch.SocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;)V
            areturn
         7: .line 90
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "Protocol family not supported"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.net.ProtocolFamily family
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lsun/nio/ch/SelectorProviderImpl;
            0    8     1  family  Ljava/net/ProtocolFamily;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      family  

  public java.nio.channels.ServerSocketChannel openServerSocketChannel(java.net.ProtocolFamily);
    descriptor: (Ljava/net/ProtocolFamily;)Ljava/nio/channels/ServerSocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.nio.ch.SelectorProviderImpl this
        start local 1 // java.net.ProtocolFamily family
         0: .line 96
            aload 1 /* family */
            ldc "'family' is null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 97
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET6:Ljava/net/StandardProtocolFamily;
            if_acmpne 3
            invokestatic sun.nio.ch.Net.isIPv6Available:()Z
            ifne 3
         2: .line 98
            new java.lang.UnsupportedOperationException
            dup
            ldc "IPv6 not available"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 99
      StackMap locals:
      StackMap stack:
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET:Ljava/net/StandardProtocolFamily;
            if_acmpeq 4
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.INET6:Ljava/net/StandardProtocolFamily;
            if_acmpne 5
         4: .line 100
      StackMap locals:
      StackMap stack:
            new sun.nio.ch.ServerSocketChannelImpl
            dup
            aload 0 /* this */
            aload 1 /* family */
            invokespecial sun.nio.ch.ServerSocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;)V
            areturn
         5: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* family */
            getstatic java.net.StandardProtocolFamily.UNIX:Ljava/net/StandardProtocolFamily;
            if_acmpne 7
            invokestatic sun.nio.ch.UnixDomainSockets.isSupported:()Z
            ifeq 7
         6: .line 102
            new sun.nio.ch.ServerSocketChannelImpl
            dup
            aload 0 /* this */
            aload 1 /* family */
            invokespecial sun.nio.ch.ServerSocketChannelImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;)V
            areturn
         7: .line 104
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "Protocol family not supported"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.net.ProtocolFamily family
        end local 0 // sun.nio.ch.SelectorProviderImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lsun/nio/ch/SelectorProviderImpl;
            0    8     1  family  Ljava/net/ProtocolFamily;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      family  
}
SourceFile: "SelectorProviderImpl.java"