public class java.sql.Time extends java.util.Date
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.sql.Time
  super_class: java.util.Date
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 8397324403548013681

  public void <init>(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // java.sql.Time this
        start local 1 // int hour
        start local 2 // int minute
        start local 3 // int second
         0: .line 63
            aload 0 /* this */
            bipush 70
            iconst_0
            iconst_1
            iload 1 /* hour */
            iload 2 /* minute */
            iload 3 /* second */
            invokespecial java.util.Date.<init>:(IIIIII)V
         1: .line 64
            return
        end local 3 // int second
        end local 2 // int minute
        end local 1 // int hour
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljava/sql/Time;
            0    2     1    hour  I
            0    2     2  minute  I
            0    2     3  second  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")
    MethodParameters:
        Name  Flags
      hour    
      minute  
      second  

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.sql.Time this
        start local 1 // long time
         0: .line 74
            aload 0 /* this */
            lload 1 /* time */
            invokespecial java.util.Date.<init>:(J)V
         1: .line 75
            return
        end local 1 // long time
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/sql/Time;
            0    2     1  time  J
    MethodParameters:
      Name  Flags
      time  

  public void setTime(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.sql.Time this
        start local 1 // long time
         0: .line 85
            aload 0 /* this */
            lload 1 /* time */
            invokespecial java.util.Date.setTime:(J)V
         1: .line 86
            return
        end local 1 // long time
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/sql/Time;
            0    2     1  time  J
    MethodParameters:
      Name  Flags
      time  

  public static java.sql.Time valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/Time;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // java.lang.String s
         0: .line 95
            aload 0 /* s */
            ifnonnull 1
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         1: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* s */
            bipush 58
            invokevirtual java.lang.String.indexOf:(I)I
            istore 4 /* firstColon */
        start local 4 // int firstColon
         2: .line 101
            aload 0 /* s */
            bipush 58
            iload 4 /* firstColon */
            iconst_1
            iadd
            invokevirtual java.lang.String.indexOf:(II)I
            istore 5 /* secondColon */
        start local 5 // int secondColon
         3: .line 102
            aload 0 /* s */
            invokevirtual java.lang.String.length:()I
            istore 6 /* len */
        start local 6 // int len
         4: .line 103
            iload 4 /* firstColon */
            ifle 10
            iload 5 /* secondColon */
            ifle 10
         5: .line 104
            iload 5 /* secondColon */
            iload 6 /* len */
            iconst_1
            isub
            if_icmpge 10
         6: .line 105
            aload 0 /* s */
            iconst_0
            iload 4 /* firstColon */
            bipush 10
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/CharSequence;III)I
            istore 1 /* hour */
        start local 1 // int hour
         7: .line 106
            aload 0 /* s */
            iload 4 /* firstColon */
            iconst_1
            iadd
            iload 5 /* secondColon */
            bipush 10
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/CharSequence;III)I
            istore 2 /* minute */
        start local 2 // int minute
         8: .line 107
            aload 0 /* s */
            iload 5 /* secondColon */
            iconst_1
            iadd
            iload 6 /* len */
            bipush 10
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/CharSequence;III)I
            istore 3 /* second */
        start local 3 // int second
         9: .line 108
            goto 11
        end local 3 // int second
        end local 2 // int minute
        end local 1 // int hour
        10: .line 109
      StackMap locals: java.lang.String top top top int int int
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        start local 1 // int hour
        start local 2 // int minute
        start local 3 // int second
        11: .line 112
      StackMap locals: java.lang.String int int int int int int
      StackMap stack:
            new java.sql.Time
            dup
            iload 1 /* hour */
            iload 2 /* minute */
            iload 3 /* second */
            invokespecial java.sql.Time.<init>:(III)V
            areturn
        end local 6 // int len
        end local 5 // int secondColon
        end local 4 // int firstColon
        end local 3 // int second
        end local 2 // int minute
        end local 1 // int hour
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0            s  Ljava/lang/String;
            7   10     1         hour  I
           11   12     1         hour  I
            8   10     2       minute  I
           11   12     2       minute  I
            9   10     3       second  I
           11   12     3       second  I
            2   12     4   firstColon  I
            3   12     5  secondColon  I
            4   12     6          len  I
    MethodParameters:
      Name  Flags
      s     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // java.sql.Time this
         0: .line 122
            aload 0 /* this */
            invokespecial java.util.Date.getHours:()I
            istore 1 /* hour */
        start local 1 // int hour
         1: .line 123
            aload 0 /* this */
            invokespecial java.util.Date.getMinutes:()I
            istore 2 /* minute */
        start local 2 // int minute
         2: .line 124
            aload 0 /* this */
            invokespecial java.util.Date.getSeconds:()I
            istore 3 /* second */
        start local 3 // int second
         3: .line 126
            bipush 8
            newarray 5
            astore 4 /* buf */
        start local 4 // char[] buf
         4: .line 127
            iload 1 /* hour */
            aload 4 /* buf */
            iconst_0
            iconst_2
            invokestatic java.sql.Date.formatDecimalInt:(I[CII)V
         5: .line 128
            aload 4 /* buf */
            iconst_2
            bipush 58
            castore
         6: .line 129
            iload 2 /* minute */
            aload 4 /* buf */
            iconst_3
            iconst_2
            invokestatic java.sql.Date.formatDecimalInt:(I[CII)V
         7: .line 130
            aload 4 /* buf */
            iconst_5
            bipush 58
            castore
         8: .line 131
            iload 3 /* second */
            aload 4 /* buf */
            bipush 6
            iconst_2
            invokestatic java.sql.Date.formatDecimalInt:(I[CII)V
         9: .line 133
            new java.lang.String
            dup
            aload 4 /* buf */
            invokespecial java.lang.String.<init>:([C)V
            areturn
        end local 4 // char[] buf
        end local 3 // int second
        end local 2 // int minute
        end local 1 // int hour
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/sql/Time;
            1   10     1    hour  I
            2   10     2  minute  I
            3   10     3  second  I
            4   10     4     buf  [C

  public int getYear();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 149
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")

  public int getMonth();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 163
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")

  public int getDay();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 176
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")

  public int getDate();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 190
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")

  public void setYear(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.sql.Time this
        start local 1 // int i
         0: .line 204
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 1 // int i
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
            0    1     1     i  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")
    MethodParameters:
      Name  Flags
      i     

  public void setMonth(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.sql.Time this
        start local 1 // int i
         0: .line 218
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 1 // int i
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
            0    1     1     i  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")
    MethodParameters:
      Name  Flags
      i     

  public void setDate(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.sql.Time this
        start local 1 // int i
         0: .line 232
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 1 // int i
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
            0    1     1     i  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "1.2")
    MethodParameters:
      Name  Flags
      i     

  public static java.sql.Time valueOf(java.time.LocalTime);
    descriptor: (Ljava/time/LocalTime;)Ljava/sql/Time;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.time.LocalTime time
         0: .line 254
            new java.sql.Time
            dup
            aload 0 /* time */
            invokevirtual java.time.LocalTime.getHour:()I
            aload 0 /* time */
            invokevirtual java.time.LocalTime.getMinute:()I
            aload 0 /* time */
            invokevirtual java.time.LocalTime.getSecond:()I
            invokespecial java.sql.Time.<init>:(III)V
            areturn
        end local 0 // java.time.LocalTime time
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  time  Ljava/time/LocalTime;
    MethodParameters:
      Name  Flags
      time  

  public java.time.LocalTime toLocalTime();
    descriptor: ()Ljava/time/LocalTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 269
            aload 0 /* this */
            invokevirtual java.sql.Time.getHours:()I
            aload 0 /* this */
            invokevirtual java.sql.Time.getMinutes:()I
            aload 0 /* this */
            invokevirtual java.sql.Time.getSeconds:()I
            invokestatic java.time.LocalTime.of:(III)Ljava/time/LocalTime;
            areturn
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;

  public java.time.Instant toInstant();
    descriptor: ()Ljava/time/Instant;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Time this
         0: .line 281
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // java.sql.Time this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/Time;
}
SourceFile: "Time.java"