public final class io.undertow.util.HttpString implements java.lang.Comparable<io.undertow.util.HttpString>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.undertow.util.HttpString
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final byte[] bytes;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final transient int hashCode;
    descriptor: I
    flags: (0x0092) ACC_PRIVATE, ACC_FINAL, ACC_TRANSIENT

  private final int orderInt;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private transient java.lang.String string;
    descriptor: Ljava/lang/String;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private static final java.lang.reflect.Field hashCodeField;
    descriptor: Ljava/lang/reflect/Field;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  public static final io.undertow.util.HttpString EMPTY;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 39
            ldc Lio/undertow/util/HttpString;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic io.undertow.util.HttpString.$assertionsDisabled:Z
         3: .line 55
            ldc Lio/undertow/util/HttpString;
            ldc "hashCode"
            invokevirtual java.lang.Class.getDeclaredField:(Ljava/lang/String;)Ljava/lang/reflect/Field;
            putstatic io.undertow.util.HttpString.hashCodeField:Ljava/lang/reflect/Field;
         4: .line 56
            getstatic io.undertow.util.HttpString.hashCodeField:Ljava/lang/reflect/Field;
            iconst_1
            invokevirtual java.lang.reflect.Field.setAccessible:(Z)V
         5: .line 57
            goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldException
         6: astore 0 /* e */
        start local 0 // java.lang.NoSuchFieldException e
         7: .line 58
            new java.lang.NoSuchFieldError
            dup
            aload 0 /* e */
            invokevirtual java.lang.NoSuchFieldException.getMessage:()Ljava/lang/String;
            invokespecial java.lang.NoSuchFieldError.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.lang.NoSuchFieldException e
         8: .line 65
      StackMap locals:
      StackMap stack:
            new io.undertow.util.HttpString
            dup
            ldc ""
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.util.HttpString.EMPTY:Lio/undertow/util/HttpString;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            7    8     0     e  Ljava/lang/NoSuchFieldException;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.NoSuchFieldException

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // byte[] bytes
         0: .line 73
            aload 0 /* this */
            aload 1 /* bytes */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            aconst_null
            invokespecial io.undertow.util.HttpString.<init>:([BLjava/lang/String;)V
         1: .line 74
            return
        end local 1 // byte[] bytes
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/undertow/util/HttpString;
            0    2     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  final

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.undertow.util.HttpString this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int length
         0: .line 84
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            aconst_null
            invokespecial io.undertow.util.HttpString.<init>:([BLjava/lang/String;)V
         1: .line 85
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/util/HttpString;
            0    2     1   bytes  [B
            0    2     2  offset  I
            0    2     3  length  I
    MethodParameters:
        Name  Flags
      bytes   final
      offset  
      length  

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 93
            aload 0 /* this */
            aload 1 /* buffer */
            invokestatic io.undertow.util.HttpString.take:(Ljava/nio/ByteBuffer;)[B
            aconst_null
            invokespecial io.undertow.util.HttpString.<init>:([BLjava/lang/String;)V
         1: .line 94
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/util/HttpString;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  final

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.lang.String string
         0: .line 103
            aload 0 /* this */
            aload 1 /* string */
            iconst_0
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;I)V
         1: .line 104
            return
        end local 1 // java.lang.String string
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/util/HttpString;
            0    2     1  string  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      string  final

  void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.lang.String string
        start local 2 // int orderInt
         0: .line 106
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 107
            aload 0 /* this */
            iload 2 /* orderInt */
            putfield io.undertow.util.HttpString.orderInt:I
         2: .line 108
            aload 1 /* string */
            invokevirtual java.lang.String.length:()I
            istore 3 /* len */
        start local 3 // int len
         3: .line 109
            iload 3 /* len */
            newarray 8
            astore 4 /* bytes */
        start local 4 // byte[] bytes
         4: .line 110
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: goto 11
         6: .line 111
      StackMap locals: io.undertow.util.HttpString java.lang.String int int byte[] int
      StackMap stack:
            aload 1 /* string */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* c */
        start local 6 // char c
         7: .line 112
            iload 6 /* c */
            sipush 255
            if_icmple 9
         8: .line 113
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid string contents "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* string */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 115
      StackMap locals: int
      StackMap stack:
            aload 4 /* bytes */
            iload 5 /* i */
            iload 6 /* c */
            i2b
            bastore
        end local 6 // char c
        10: .line 110
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 3 /* len */
            if_icmplt 6
        end local 5 // int i
        12: .line 117
            aload 0 /* this */
            aload 4 /* bytes */
            putfield io.undertow.util.HttpString.bytes:[B
        13: .line 118
            aload 0 /* this */
            aload 4 /* bytes */
            invokestatic io.undertow.util.HttpString.calcHashCode:([B)I
            putfield io.undertow.util.HttpString.hashCode:I
        14: .line 119
            aload 0 /* this */
            aload 1 /* string */
            putfield io.undertow.util.HttpString.string:Ljava/lang/String;
        15: .line 120
            aload 0 /* this */
            invokevirtual io.undertow.util.HttpString.checkForNewlines:()V
        16: .line 121
            return
        end local 4 // byte[] bytes
        end local 3 // int len
        end local 2 // int orderInt
        end local 1 // java.lang.String string
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lio/undertow/util/HttpString;
            0   17     1    string  Ljava/lang/String;
            0   17     2  orderInt  I
            3   17     3       len  I
            4   17     4     bytes  [B
            5   12     5         i  I
            7   10     6         c  C
    MethodParameters:
          Name  Flags
      string    final
      orderInt  

  private void checkForNewlines();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.undertow.util.HttpString this
         0: .line 124
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 5
      StackMap locals: io.undertow.util.HttpString top int int byte[]
      StackMap stack:
         1: aload 4
            iload 2
            baload
            istore 1 /* b */
        start local 1 // byte b
         2: .line 125
            iload 1 /* b */
            bipush 13
            if_icmpeq 3
            iload 1 /* b */
            bipush 10
            if_icmpne 4
         3: .line 126
      StackMap locals: io.undertow.util.HttpString int int int byte[]
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            aload 0 /* this */
            getfield io.undertow.util.HttpString.string:Ljava/lang/String;
            invokeinterface io.undertow.UndertowMessages.newlineNotSupportedInHttpString:(Ljava/lang/String;)Ljava/lang/IllegalArgumentException;
            athrow
        end local 1 // byte b
         4: .line 124
      StackMap locals: io.undertow.util.HttpString top int int byte[]
      StackMap stack:
            iinc 2 1
      StackMap locals:
      StackMap stack:
         5: iload 2
            iload 3
            if_icmplt 1
         6: .line 129
            return
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/undertow/util/HttpString;
            2    4     1     b  B

  private void <init>(byte[], java.lang.String);
    descriptor: ([BLjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.undertow.util.HttpString this
        start local 1 // byte[] bytes
        start local 2 // java.lang.String string
         0: .line 131
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 132
            aload 0 /* this */
            aload 1 /* bytes */
            putfield io.undertow.util.HttpString.bytes:[B
         2: .line 133
            aload 0 /* this */
            aload 1 /* bytes */
            invokestatic io.undertow.util.HttpString.calcHashCode:([B)I
            putfield io.undertow.util.HttpString.hashCode:I
         3: .line 134
            aload 0 /* this */
            aload 2 /* string */
            putfield io.undertow.util.HttpString.string:Ljava/lang/String;
         4: .line 135
            aload 0 /* this */
            iconst_0
            putfield io.undertow.util.HttpString.orderInt:I
         5: .line 136
            aload 0 /* this */
            invokevirtual io.undertow.util.HttpString.checkForNewlines:()V
         6: .line 137
            return
        end local 2 // java.lang.String string
        end local 1 // byte[] bytes
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/undertow/util/HttpString;
            0    7     1   bytes  [B
            0    7     2  string  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      bytes   final
      string  final

  public static io.undertow.util.HttpString tryFromString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/util/HttpString;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // java.lang.String string
         0: .line 147
            aload 0 /* string */
            invokestatic io.undertow.util.Headers.fromCache:(Ljava/lang/String;)Lio/undertow/util/HttpString;
            astore 1 /* cached */
        start local 1 // io.undertow.util.HttpString cached
         1: .line 148
            aload 1 /* cached */
            ifnull 3
         2: .line 149
            aload 1 /* cached */
            areturn
         3: .line 151
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 0 /* string */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         4: .line 152
            iload 2 /* len */
            newarray 8
            astore 3 /* bytes */
        start local 3 // byte[] bytes
         5: .line 153
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 12
         7: .line 154
      StackMap locals: int byte[] int
      StackMap stack:
            aload 0 /* string */
            iload 4 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* c */
        start local 5 // char c
         8: .line 155
            iload 5 /* c */
            sipush 255
            if_icmple 10
         9: .line 156
            aconst_null
            areturn
        10: .line 158
      StackMap locals: int
      StackMap stack:
            aload 3 /* bytes */
            iload 4 /* i */
            iload 5 /* c */
            i2b
            bastore
        end local 5 // char c
        11: .line 153
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* len */
            if_icmplt 7
        end local 4 // int i
        13: .line 160
            new io.undertow.util.HttpString
            dup
            aload 3 /* bytes */
            aload 0 /* string */
            invokespecial io.undertow.util.HttpString.<init>:([BLjava/lang/String;)V
            areturn
        end local 3 // byte[] bytes
        end local 2 // int len
        end local 1 // io.undertow.util.HttpString cached
        end local 0 // java.lang.String string
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0  string  Ljava/lang/String;
            1   14     1  cached  Lio/undertow/util/HttpString;
            4   14     2     len  I
            5   14     3   bytes  [B
            6   13     4       i  I
            8   11     5       c  C
    MethodParameters:
        Name  Flags
      string  

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.util.HttpString this
         0: .line 169
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            ireturn
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/util/HttpString;

  public byte byteAt(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // int idx
         0: .line 178
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            iload 1 /* idx */
            baload
            ireturn
        end local 1 // int idx
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/util/HttpString;
            0    1     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  public void copyTo(int, byte[], int, int);
    descriptor: (I[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.undertow.util.HttpString this
        start local 1 // int srcOffs
        start local 2 // byte[] dst
        start local 3 // int offs
        start local 4 // int len
         0: .line 190
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            iload 1 /* srcOffs */
            aload 2 /* dst */
            iload 3 /* offs */
            iload 4 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 191
            return
        end local 4 // int len
        end local 3 // int offs
        end local 2 // byte[] dst
        end local 1 // int srcOffs
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/undertow/util/HttpString;
            0    2     1  srcOffs  I
            0    2     2      dst  [B
            0    2     3     offs  I
            0    2     4      len  I
    MethodParameters:
         Name  Flags
      srcOffs  
      dst      
      offs     
      len      

  public void copyTo(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.undertow.util.HttpString this
        start local 1 // byte[] dst
        start local 2 // int offs
        start local 3 // int len
         0: .line 201
            aload 0 /* this */
            iconst_0
            aload 1 /* dst */
            iload 2 /* offs */
            iload 3 /* len */
            invokevirtual io.undertow.util.HttpString.copyTo:(I[BII)V
         1: .line 202
            return
        end local 3 // int len
        end local 2 // int offs
        end local 1 // byte[] dst
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/util/HttpString;
            0    2     1   dst  [B
            0    2     2  offs  I
            0    2     3   len  I
    MethodParameters:
      Name  Flags
      dst   
      offs  
      len   

  public void copyTo(byte[], int);
    descriptor: ([BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.undertow.util.HttpString this
        start local 1 // byte[] dst
        start local 2 // int offs
         0: .line 211
            aload 0 /* this */
            aload 1 /* dst */
            iload 2 /* offs */
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            invokevirtual io.undertow.util.HttpString.copyTo:([BII)V
         1: .line 212
            return
        end local 2 // int offs
        end local 1 // byte[] dst
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/util/HttpString;
            0    2     1   dst  [B
            0    2     2  offs  I
    MethodParameters:
      Name  Flags
      dst   
      offs  

  public void appendTo(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 220
            aload 1 /* buffer */
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
         1: .line 221
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/util/HttpString;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  

  public void writeTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.io.OutputStream output
         0: .line 230
            aload 1 /* output */
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            invokevirtual java.io.OutputStream.write:([B)V
         1: .line 231
            return
        end local 1 // java.io.OutputStream output
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/util/HttpString;
            0    2     1  output  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      output  

  private static byte[] take(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 234
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 7
         1: .line 237
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            astore 2
         2: .line 239
            aload 0 /* buffer */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 237
            aload 2
            areturn
         4: .line 238
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
         5: .line 239
            aload 0 /* buffer */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         6: .line 240
            aload 1
            athrow
         7: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         8: .line 243
            aload 0 /* buffer */
            aload 1 /* bytes */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         9: .line 244
            aload 1 /* bytes */
            areturn
        end local 1 // byte[] bytes
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0  buffer  Ljava/nio/ByteBuffer;
            8   10     1   bytes  [B
      Exception table:
        from    to  target  type
           1     2       4  any
    MethodParameters:
        Name  Flags
      buffer  final

  public int compareTo(io.undertow.util.HttpString);
    descriptor: (Lio/undertow/util/HttpString;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // io.undertow.util.HttpString other
         0: .line 255
            aload 0 /* this */
            getfield io.undertow.util.HttpString.orderInt:I
            ifeq 2
            aload 1 /* other */
            getfield io.undertow.util.HttpString.orderInt:I
            ifeq 2
         1: .line 256
            aload 0 /* this */
            getfield io.undertow.util.HttpString.orderInt:I
            aload 1 /* other */
            getfield io.undertow.util.HttpString.orderInt:I
            isub
            invokestatic java.lang.Integer.signum:(I)I
            ireturn
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            aload 1 /* other */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 2 /* len */
        start local 2 // int len
         3: .line 260
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 8
         5: .line 261
      StackMap locals: io.undertow.util.HttpString io.undertow.util.HttpString int top int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            iload 4 /* i */
            baload
            invokestatic io.undertow.util.HttpString.higher:(B)I
            aload 1 /* other */
            getfield io.undertow.util.HttpString.bytes:[B
            iload 4 /* i */
            baload
            invokestatic io.undertow.util.HttpString.higher:(B)I
            isub
            invokestatic java.lang.Integer.signum:(I)I
            istore 3 /* res */
        start local 3 // int res
         6: .line 262
            iload 3 /* res */
            ifeq 7
            iload 3 /* res */
            ireturn
         7: .line 260
      StackMap locals: io.undertow.util.HttpString io.undertow.util.HttpString int int int
      StackMap stack:
            iinc 4 /* i */ 1
        end local 3 // int res
      StackMap locals: io.undertow.util.HttpString io.undertow.util.HttpString int top int
      StackMap stack:
         8: iload 4 /* i */
            iload 2 /* len */
            if_icmplt 5
        end local 4 // int i
         9: .line 265
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            aload 1 /* other */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            isub
            invokestatic java.lang.Integer.signum:(I)I
            ireturn
        end local 2 // int len
        end local 1 // io.undertow.util.HttpString other
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/undertow/util/HttpString;
            0   10     1  other  Lio/undertow/util/HttpString;
            3   10     2    len  I
            6    8     3    res  I
            4    9     4      i  I
    MethodParameters:
       Name  Flags
      other  final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.util.HttpString this
         0: .line 275
            aload 0 /* this */
            getfield io.undertow.util.HttpString.hashCode:I
            ireturn
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/util/HttpString;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.lang.Object other
         0: .line 286
            aload 1 /* other */
            aload 0 /* this */
            if_acmpne 2
         1: .line 287
            iconst_1
            ireturn
         2: .line 289
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof io.undertow.util.HttpString
            ifne 4
         3: .line 290
            iconst_0
            ireturn
         4: .line 292
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast io.undertow.util.HttpString
            astore 2 /* otherString */
        start local 2 // io.undertow.util.HttpString otherString
         5: .line 293
            aload 0 /* this */
            getfield io.undertow.util.HttpString.orderInt:I
            ifle 7
            aload 2 /* otherString */
            getfield io.undertow.util.HttpString.orderInt:I
            ifle 7
         6: .line 295
            iconst_0
            ireturn
         7: .line 297
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            aload 2 /* otherString */
            getfield io.undertow.util.HttpString.bytes:[B
            invokestatic io.undertow.util.HttpString.bytesAreEqual:([B[B)Z
            ireturn
        end local 2 // io.undertow.util.HttpString otherString
        end local 1 // java.lang.Object other
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lio/undertow/util/HttpString;
            0    8     1        other  Ljava/lang/Object;
            5    8     2  otherString  Lio/undertow/util/HttpString;
    MethodParameters:
       Name  Flags
      other  final

  public boolean equals(io.undertow.util.HttpString);
    descriptor: (Lio/undertow/util/HttpString;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // io.undertow.util.HttpString other
         0: .line 307
            aload 1 /* other */
            aload 0 /* this */
            if_acmpeq 2
            aload 1 /* other */
            ifnull 1
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            aload 1 /* other */
            getfield io.undertow.util.HttpString.bytes:[B
            invokestatic io.undertow.util.HttpString.bytesAreEqual:([B[B)Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 1 // io.undertow.util.HttpString other
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/undertow/util/HttpString;
            0    3     1  other  Lio/undertow/util/HttpString;
    MethodParameters:
       Name  Flags
      other  final

  private static int calcHashCode(byte[]);
    descriptor: ([B)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // byte[] bytes
         0: .line 311
            bipush 17
            istore 1 /* hc */
        start local 1 // int hc
         1: .line 312
            aload 0 /* bytes */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: byte[] int top int int byte[]
      StackMap stack:
         2: aload 5
            iload 3
            baload
            istore 2 /* b */
        start local 2 // byte b
         3: .line 313
            iload 1 /* hc */
            iconst_4
            ishl
            iload 1 /* hc */
            iadd
            iload 2 /* b */
            invokestatic io.undertow.util.HttpString.higher:(B)I
            iadd
            istore 1 /* hc */
        end local 2 // byte b
         4: .line 312
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 315
            iload 1 /* hc */
            ireturn
        end local 1 // int hc
        end local 0 // byte[] bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0  bytes  [B
            1    7     1     hc  I
            3    4     2      b  B
    MethodParameters:
       Name  Flags
      bytes  final

  private static int higher(byte);
    descriptor: (B)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte b
         0: .line 319
            iload 0 /* b */
            iload 0 /* b */
            bipush 97
            if_icmplt 1
            iload 0 /* b */
            bipush 122
            if_icmpgt 1
            sipush 223
            goto 2
      StackMap locals:
      StackMap stack: int
         1: sipush 255
      StackMap locals: int
      StackMap stack: int int
         2: iand
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     b  B
    MethodParameters:
      Name  Flags
      b     

  private static boolean bytesAreEqual(byte[], byte[]);
    descriptor: ([B[B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // byte[] a
        start local 1 // byte[] b
         0: .line 323
            aload 0 /* a */
            arraylength
            aload 1 /* b */
            arraylength
            if_icmpne 1
            aload 0 /* a */
            aload 1 /* b */
            invokestatic io.undertow.util.HttpString.bytesAreEquivalent:([B[B)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // byte[] b
        end local 0 // byte[] a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  [B
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      a     final
      b     final

  private static boolean bytesAreEquivalent(byte[], byte[]);
    descriptor: ([B[B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // byte[] a
        start local 1 // byte[] b
         0: .line 327
            getstatic io.undertow.util.HttpString.$assertionsDisabled:Z
            ifne 1
            aload 0 /* a */
            arraylength
            aload 1 /* b */
            arraylength
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 329
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 7
         4: .line 330
      StackMap locals: int int
      StackMap stack:
            aload 0 /* a */
            iload 3 /* i */
            baload
            invokestatic io.undertow.util.HttpString.higher:(B)I
            aload 1 /* b */
            iload 3 /* i */
            baload
            invokestatic io.undertow.util.HttpString.higher:(B)I
            if_icmpeq 6
         5: .line 331
            iconst_0
            ireturn
         6: .line 329
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 4
        end local 3 // int i
         8: .line 334
            iconst_1
            ireturn
        end local 2 // int len
        end local 1 // byte[] b
        end local 0 // byte[] a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0     a  [B
            0    9     1     b  [B
            2    9     2   len  I
            3    8     3     i  I
    MethodParameters:
      Name  Flags
      a     final
      b     final

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // io.undertow.util.HttpString this
         0: .line 345
            aload 0 /* this */
            getfield io.undertow.util.HttpString.string:Ljava/lang/String;
            ifnonnull 2
         1: .line 346
            aload 0 /* this */
            new java.lang.String
            dup
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            getstatic java.nio.charset.StandardCharsets.US_ASCII:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            putfield io.undertow.util.HttpString.string:Ljava/lang/String;
         2: .line 348
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.string:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/undertow/util/HttpString;

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.io.ObjectInputStream ois
         0: .line 352
            aload 1 /* ois */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 354
            getstatic io.undertow.util.HttpString.hashCodeField:Ljava/lang/reflect/Field;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            invokestatic io.undertow.util.HttpString.calcHashCode:([B)I
            invokevirtual java.lang.reflect.Field.setInt:(Ljava/lang/Object;I)V
         2: .line 355
            goto 5
      StackMap locals:
      StackMap stack: java.lang.IllegalAccessException
         3: astore 2 /* e */
        start local 2 // java.lang.IllegalAccessException e
         4: .line 356
            new java.lang.IllegalAccessError
            dup
            aload 2 /* e */
            invokevirtual java.lang.IllegalAccessException.getMessage:()Ljava/lang/String;
            invokespecial java.lang.IllegalAccessError.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.IllegalAccessException e
         5: .line 358
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.ObjectInputStream ois
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/undertow/util/HttpString;
            0    6     1   ois  Ljava/io/ObjectInputStream;
            4    5     2     e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.lang.ClassNotFoundException, java.io.IOException
    MethodParameters:
      Name  Flags
      ois   

  static int hashCodeOf(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.lang.String headerName
         0: .line 361
            bipush 17
            istore 1 /* hc */
        start local 1 // int hc
         1: .line 363
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 364
      StackMap locals: int int
      StackMap stack:
            iload 1 /* hc */
            iconst_4
            ishl
            iload 1 /* hc */
            iadd
            aload 0 /* headerName */
            iload 2 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            i2b
            invokestatic io.undertow.util.HttpString.higher:(B)I
            iadd
            istore 1 /* hc */
         4: .line 363
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* headerName */
            invokevirtual java.lang.String.length:()I
            if_icmplt 3
        end local 2 // int i
         6: .line 366
            iload 1 /* hc */
            ireturn
        end local 1 // int hc
        end local 0 // java.lang.String headerName
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  headerName  Ljava/lang/String;
            1    7     1          hc  I
            2    6     2           i  I
    MethodParameters:
            Name  Flags
      headerName  

  public boolean equalToString(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.undertow.util.HttpString this
        start local 1 // java.lang.String headerName
         0: .line 370
            aload 1 /* headerName */
            invokevirtual java.lang.String.length:()I
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            if_icmpeq 2
         1: .line 371
            iconst_0
            ireturn
         2: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            arraylength
            istore 2 /* len */
        start local 2 // int len
         3: .line 375
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 8
         5: .line 376
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.util.HttpString.bytes:[B
            iload 3 /* i */
            baload
            invokestatic io.undertow.util.HttpString.higher:(B)I
            aload 1 /* headerName */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            i2b
            invokestatic io.undertow.util.HttpString.higher:(B)I
            if_icmpeq 7
         6: .line 377
            iconst_0
            ireturn
         7: .line 375
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 5
        end local 3 // int i
         9: .line 380
            iconst_1
            ireturn
        end local 2 // int len
        end local 1 // java.lang.String headerName
        end local 0 // io.undertow.util.HttpString this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lio/undertow/util/HttpString;
            0   10     1  headerName  Ljava/lang/String;
            3   10     2         len  I
            4    9     3           i  I
    MethodParameters:
            Name  Flags
      headerName  

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.undertow.util.HttpString
            invokevirtual io.undertow.util.HttpString.compareTo:(Lio/undertow/util/HttpString;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/lang/Comparable<Lio/undertow/util/HttpString;>;Ljava/io/Serializable;
SourceFile: "HttpString.java"