public class org.h2.value.ValueBytes extends org.h2.value.Value
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.value.ValueBytes
  super_class: org.h2.value.Value
{
  public static final org.h2.value.ValueBytes EMPTY;
    descriptor: Lorg/h2/value/ValueBytes;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  protected byte[] value;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected org.h2.value.TypeInfo type;
    descriptor: Lorg/h2/value/TypeInfo;
    flags: (0x0004) ACC_PROTECTED

  protected int hash;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 27
            new org.h2.value.ValueBytes
            dup
            getstatic org.h2.util.Utils.EMPTY_BYTES:[B
            invokespecial org.h2.value.ValueBytes.<init>:([B)V
            putstatic org.h2.value.ValueBytes.EMPTY:Lorg/h2/value/ValueBytes;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // byte[] v
         0: .line 44
            aload 0 /* this */
            invokespecial org.h2.value.Value.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* v */
            putfield org.h2.value.ValueBytes.value:[B
         2: .line 46
            return
        end local 1 // byte[] v
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/value/ValueBytes;
            0    3     1     v  [B
    MethodParameters:
      Name  Flags
      v     

  public static org.h2.value.ValueBytes get(byte[]);
    descriptor: ([B)Lorg/h2/value/ValueBytes;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // byte[] b
         0: .line 56
            aload 0 /* b */
            arraylength
            ifne 2
         1: .line 57
            getstatic org.h2.value.ValueBytes.EMPTY:Lorg/h2/value/ValueBytes;
            areturn
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* b */
            invokestatic org.h2.util.Utils.cloneByteArray:([B)[B
            astore 0 /* b */
         3: .line 60
            aload 0 /* b */
            invokestatic org.h2.value.ValueBytes.getNoCopy:([B)Lorg/h2/value/ValueBytes;
            areturn
        end local 0 // byte[] b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     b  [B
    MethodParameters:
      Name  Flags
      b     

  public static org.h2.value.ValueBytes getNoCopy(byte[]);
    descriptor: ([B)Lorg/h2/value/ValueBytes;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // byte[] b
         0: .line 71
            aload 0 /* b */
            arraylength
            ifne 2
         1: .line 72
            getstatic org.h2.value.ValueBytes.EMPTY:Lorg/h2/value/ValueBytes;
            areturn
         2: .line 74
      StackMap locals:
      StackMap stack:
            new org.h2.value.ValueBytes
            dup
            aload 0 /* b */
            invokespecial org.h2.value.ValueBytes.<init>:([B)V
            astore 1 /* obj */
        start local 1 // org.h2.value.ValueBytes obj
         3: .line 75
            aload 0 /* b */
            arraylength
            getstatic org.h2.engine.SysProperties.OBJECT_CACHE_MAX_PER_ELEMENT_SIZE:I
            if_icmple 5
         4: .line 76
            aload 1 /* obj */
            areturn
         5: .line 78
      StackMap locals: org.h2.value.ValueBytes
      StackMap stack:
            aload 1 /* obj */
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueBytes
            areturn
        end local 1 // org.h2.value.ValueBytes obj
        end local 0 // byte[] b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     b  [B
            3    6     1   obj  Lorg/h2/value/ValueBytes;
    MethodParameters:
      Name  Flags
      b     

  public org.h2.value.TypeInfo getType();
    descriptor: ()Lorg/h2/value/TypeInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=4, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 83
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.type:Lorg/h2/value/TypeInfo;
            astore 1 /* type */
        start local 1 // org.h2.value.TypeInfo type
         1: .line 84
            aload 1 /* type */
            ifnonnull 4
         2: .line 85
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            arraylength
            i2l
            lstore 2 /* precision */
        start local 2 // long precision
         3: .line 86
            aload 0 /* this */
            new org.h2.value.TypeInfo
            dup
            bipush 12
            lload 2 /* precision */
            iconst_0
            lload 2 /* precision */
            ldc 2
            lmul
            invokestatic org.h2.util.MathUtils.convertLongToInt:(J)I
            aconst_null
            invokespecial org.h2.value.TypeInfo.<init>:(IJIILorg/h2/value/ExtTypeInfo;)V
            dup
            astore 1 /* type */
            putfield org.h2.value.ValueBytes.type:Lorg/h2/value/TypeInfo;
        end local 2 // long precision
         4: .line 88
      StackMap locals: org.h2.value.TypeInfo
      StackMap stack:
            aload 1 /* type */
            areturn
        end local 1 // org.h2.value.TypeInfo type
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/h2/value/ValueBytes;
            1    5     1       type  Lorg/h2/value/TypeInfo;
            3    4     2  precision  J

  public int getValueType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 93
            bipush 12
            ireturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public java.lang.StringBuilder getSQL(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // java.lang.StringBuilder builder
         0: .line 98
            aload 1 /* builder */
            ldc "X'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         1: .line 99
            aload 1 /* builder */
            aload 0 /* this */
            invokevirtual org.h2.value.ValueBytes.getBytesNoCopy:()[B
            invokestatic org.h2.util.StringUtils.convertBytesToHex:(Ljava/lang/StringBuilder;[B)Ljava/lang/StringBuilder;
            bipush 39
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/value/ValueBytes;
            0    2     1  builder  Ljava/lang/StringBuilder;
    MethodParameters:
         Name  Flags
      builder  

  public byte[] getBytesNoCopy();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 104
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            areturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 109
            aload 0 /* this */
            invokevirtual org.h2.value.ValueBytes.getBytesNoCopy:()[B
            invokestatic org.h2.util.Utils.cloneByteArray:([B)[B
            areturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public int compareTypeSafe(org.h2.value.Value, org.h2.value.CompareMode);
    descriptor: (Lorg/h2/value/Value;Lorg/h2/value/CompareMode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // org.h2.value.Value v
        start local 2 // org.h2.value.CompareMode mode
         0: .line 114
            aload 1 /* v */
            checkcast org.h2.value.ValueBytes
            getfield org.h2.value.ValueBytes.value:[B
            astore 3 /* v2 */
        start local 3 // byte[] v2
         1: .line 115
            aload 2 /* mode */
            invokevirtual org.h2.value.CompareMode.isBinaryUnsigned:()Z
            ifeq 3
         2: .line 116
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            aload 3 /* v2 */
            invokestatic org.h2.util.Bits.compareNotNullUnsigned:([B[B)I
            ireturn
         3: .line 118
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            aload 3 /* v2 */
            invokestatic org.h2.util.Bits.compareNotNullSigned:([B[B)I
            ireturn
        end local 3 // byte[] v2
        end local 2 // org.h2.value.CompareMode mode
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/value/ValueBytes;
            0    4     1     v  Lorg/h2/value/Value;
            0    4     2  mode  Lorg/h2/value/CompareMode;
            1    4     3    v2  [B
    MethodParameters:
      Name  Flags
      v     
      mode  

  public java.lang.String getString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 123
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            invokestatic org.h2.util.StringUtils.convertBytesToHex:([B)Ljava/lang/String;
            areturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 128
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.hash:I
            ifne 2
         1: .line 129
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            invokestatic org.h2.util.Utils.getByteArrayHash:([B)I
            putfield org.h2.value.ValueBytes.hash:I
         2: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.hash:I
            ireturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/value/ValueBytes;

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 136
            aload 0 /* this */
            invokevirtual org.h2.value.ValueBytes.getBytes:()[B
            areturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public void set(java.sql.PreparedStatement, int);
    descriptor: (Ljava/sql/PreparedStatement;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // java.sql.PreparedStatement prep
        start local 2 // int parameterIndex
         0: .line 142
            aload 1 /* prep */
            iload 2 /* parameterIndex */
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            invokeinterface java.sql.PreparedStatement.setBytes:(I[B)V
         1: .line 143
            return
        end local 2 // int parameterIndex
        end local 1 // java.sql.PreparedStatement prep
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/h2/value/ValueBytes;
            0    2     1            prep  Ljava/sql/PreparedStatement;
            0    2     2  parameterIndex  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      prep            
      parameterIndex  

  public int getMemory();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueBytes this
         0: .line 147
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            arraylength
            bipush 24
            iadd
            ireturn
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueBytes;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // java.lang.Object other
         0: .line 152
            aload 1 /* other */
            instanceof org.h2.value.ValueBytes
            ifeq 3
         1: .line 153
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            aload 1 /* other */
            checkcast org.h2.value.ValueBytes
            getfield org.h2.value.ValueBytes.value:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifeq 3
         2: .line 152
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/value/ValueBytes;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public org.h2.value.Value convertPrecision(long, boolean);
    descriptor: (JZ)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.h2.value.ValueBytes this
        start local 1 // long precision
        start local 3 // boolean force
         0: .line 158
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            arraylength
            i2l
            lload 1 /* precision */
            lcmp
            ifgt 2
         1: .line 159
            aload 0 /* this */
            areturn
         2: .line 161
      StackMap locals:
      StackMap stack:
            lload 1 /* precision */
            invokestatic org.h2.util.MathUtils.convertLongToInt:(J)I
            istore 4 /* len */
        start local 4 // int len
         3: .line 162
            aload 0 /* this */
            getfield org.h2.value.ValueBytes.value:[B
            iload 4 /* len */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            invokestatic org.h2.value.ValueBytes.getNoCopy:([B)Lorg/h2/value/ValueBytes;
            areturn
        end local 4 // int len
        end local 3 // boolean force
        end local 1 // long precision
        end local 0 // org.h2.value.ValueBytes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/h2/value/ValueBytes;
            0    4     1  precision  J
            0    4     3      force  Z
            3    4     4        len  I
    MethodParameters:
           Name  Flags
      precision  
      force      
}
SourceFile: "ValueBytes.java"