abstract class io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType extends java.lang.Enum<io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType>
  minor version: 0
  major version: 59
  flags: flags: (0x4420) ACC_SUPER, ACC_ABSTRACT, ACC_ANNOTATION
  this_class: io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType
  super_class: java.lang.Enum
{
  public static final io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType NIO2;
    descriptor: Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType NETTY;
    descriptor: Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  private static final io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType[] ENUM$VALUES;
    descriptor: [Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x101a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 24
            new io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$1
            dup
            ldc "NIO2"
            iconst_0
            invokespecial io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$1.<init>:(Ljava/lang/String;I)V
            putstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.NIO2:Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
         1: .line 31
            new io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$2
            dup
            ldc "NETTY"
            iconst_1
            invokespecial io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$2.<init>:(Ljava/lang/String;I)V
            putstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.NETTY:Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
         2: .line 23
            iconst_2
            anewarray io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType
            dup
            iconst_0
            getstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.NIO2:Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
            aastore
            dup
            iconst_1
            getstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.NETTY:Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
            aastore
            putstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.ENUM$VALUES:[Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType this
         0: .line 23
            aload 0 /* this */
            aload 1
            iload 2
            invokespecial java.lang.Enum.<init>:(Ljava/lang/String;I)V
            return
        end local 0 // io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    MethodParameters:
               Name  Flags
      $enum$name     
      $enum$ordinal  

  abstract com.mongodb.connection.StreamFactoryFactory streamFactory();
    descriptor: ()Lcom/mongodb/connection/StreamFactoryFactory;
    flags: (0x0400) ACC_ABSTRACT

  static io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String streamType
         0: .line 42
            aload 0 /* streamType */
            invokevirtual java.lang.String.toUpperCase:()Ljava/lang/String;
            invokestatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.valueOf:(Ljava/lang/String;)Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
         1: areturn
         2: .line 43
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            pop
         3: .line 44
            new java.lang.IllegalArgumentException
            dup
            ldc "Not supported StreamType. Supported values are [nio2|netty]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.lang.String streamType
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0  streamType  Ljava/lang/String;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IllegalArgumentException
    MethodParameters:
            Name  Flags
      streamType  

  public static io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType[] values();
    descriptor: ()[Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=0
         0: .line 1
            getstatic io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType.ENUM$VALUES:[Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
            dup
            astore 0
            iconst_0
            aload 0
            arraylength
            dup
            istore 1
            anewarray io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType
            dup
            astore 2
            iconst_0
            iload 1
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            aload 2
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 1
            ldc Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;
            aload 0
            invokestatic java.lang.Enum.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum;
            checkcast io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
      name  
}
Signature: Ljava/lang/Enum<Lio/vertx/ext/mongo/impl/config/StreamTypeParser$StreamType;>;
SourceFile: "StreamTypeParser.java"
NestHost: io.vertx.ext.mongo.impl.config.StreamTypeParser
InnerClasses:
  private abstract StreamType = io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType of io.vertx.ext.mongo.impl.config.StreamTypeParser
  io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$1
  io.vertx.ext.mongo.impl.config.StreamTypeParser$StreamType$2