public class com.datastax.oss.driver.internal.core.type.codec.TimeCodec implements com.datastax.oss.driver.api.core.type.codec.TypeCodec<java.time.LocalTime>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.datastax.oss.driver.internal.core.type.codec.TimeCodec
  super_class: java.lang.Object
{
  private static final java.time.format.DateTimeFormatter FORMATTER;
    descriptor: Ljava/time/format/DateTimeFormatter;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 36
            ldc "HH:mm:ss.SSSSSSSSS"
            invokestatic java.time.format.DateTimeFormatter.ofPattern:(Ljava/lang/String;)Ljava/time/format/DateTimeFormatter;
         1: .line 35
            putstatic com.datastax.oss.driver.internal.core.type.codec.TimeCodec.FORMATTER:Ljava/time/format/DateTimeFormatter;
         2: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;

  public com.datastax.oss.driver.api.core.type.reflect.GenericType<java.time.LocalTime> getJavaType();
    descriptor: ()Lcom/datastax/oss/driver/api/core/type/reflect/GenericType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
         0: .line 41
            getstatic com.datastax.oss.driver.api.core.type.reflect.GenericType.LOCAL_TIME:Lcom/datastax/oss/driver/api/core/type/reflect/GenericType;
            areturn
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
    Signature: ()Lcom/datastax/oss/driver/api/core/type/reflect/GenericType<Ljava/time/LocalTime;>;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.NonNull()

  public com.datastax.oss.driver.api.core.type.DataType getCqlType();
    descriptor: ()Lcom/datastax/oss/driver/api/core/type/DataType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
         0: .line 47
            getstatic com.datastax.oss.driver.api.core.type.DataTypes.TIME:Lcom/datastax/oss/driver/api/core/type/DataType;
            areturn
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.NonNull()

  public boolean accepts(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.lang.Object value
         0: .line 52
            aload 1 /* value */
            instanceof java.time.LocalTime
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0    1     1  value  Ljava/lang/Object;
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
       Name  Flags
      value  

  public boolean accepts(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.lang.Class javaClass
         0: .line 57
            aload 1 /* javaClass */
            ldc Ljava/time/LocalTime;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Class javaClass
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0    2     1  javaClass  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)Z
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
           Name  Flags
      javaClass  

  public java.nio.ByteBuffer encode(java.time.LocalTime, com.datastax.oss.driver.api.core.ProtocolVersion);
    descriptor: (Ljava/time/LocalTime;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.time.LocalTime value
        start local 2 // com.datastax.oss.driver.api.core.ProtocolVersion protocolVersion
         0: .line 63
            aload 1 /* value */
            ifnonnull 2
         1: .line 64
            aconst_null
            goto 3
         2: .line 65
      StackMap locals:
      StackMap stack:
            getstatic com.datastax.oss.driver.api.core.type.codec.TypeCodecs.BIGINT:Lcom/datastax/oss/driver/api/core/type/codec/PrimitiveLongCodec;
            aload 1 /* value */
            invokevirtual java.time.LocalTime.toNanoOfDay:()J
            aload 2 /* protocolVersion */
            invokeinterface com.datastax.oss.driver.api.core.type.codec.PrimitiveLongCodec.encodePrimitive:(JLcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/nio/ByteBuffer;
         3: .line 63
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
            areturn
        end local 2 // com.datastax.oss.driver.api.core.ProtocolVersion protocolVersion
        end local 1 // java.time.LocalTime value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0    4     1            value  Ljava/time/LocalTime;
            0    4     2  protocolVersion  Lcom/datastax/oss/driver/api/core/ProtocolVersion;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.Nullable()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
      1:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
                 Name  Flags
      value            
      protocolVersion  

  public java.time.LocalTime decode(java.nio.ByteBuffer, com.datastax.oss.driver.api.core.ProtocolVersion);
    descriptor: (Ljava/nio/ByteBuffer;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/time/LocalTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.nio.ByteBuffer bytes
        start local 2 // com.datastax.oss.driver.api.core.ProtocolVersion protocolVersion
         0: .line 71
            aload 1 /* bytes */
            ifnull 1
            aload 1 /* bytes */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifne 2
         1: .line 72
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 74
      StackMap locals:
      StackMap stack:
            getstatic com.datastax.oss.driver.api.core.type.codec.TypeCodecs.BIGINT:Lcom/datastax/oss/driver/api/core/type/codec/PrimitiveLongCodec;
            aload 1 /* bytes */
            aload 2 /* protocolVersion */
            invokeinterface com.datastax.oss.driver.api.core.type.codec.PrimitiveLongCodec.decodePrimitive:(Ljava/nio/ByteBuffer;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)J
            lstore 3 /* nanosOfDay */
        start local 3 // long nanosOfDay
         3: .line 75
            lload 3 /* nanosOfDay */
            invokestatic java.time.LocalTime.ofNanoOfDay:(J)Ljava/time/LocalTime;
            areturn
        end local 3 // long nanosOfDay
        end local 2 // com.datastax.oss.driver.api.core.ProtocolVersion protocolVersion
        end local 1 // java.nio.ByteBuffer bytes
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0    4     1            bytes  Ljava/nio/ByteBuffer;
            0    4     2  protocolVersion  Lcom/datastax/oss/driver/api/core/ProtocolVersion;
            3    4     3       nanosOfDay  J
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.Nullable()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
      1:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
                 Name  Flags
      bytes            
      protocolVersion  

  public java.lang.String format(java.time.LocalTime);
    descriptor: (Ljava/time/LocalTime;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.time.LocalTime value
         0: .line 82
            aload 1 /* value */
            ifnonnull 1
            ldc "NULL"
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic com.datastax.oss.driver.internal.core.type.codec.TimeCodec.FORMATTER:Ljava/time/format/DateTimeFormatter;
            aload 1 /* value */
            invokevirtual java.time.format.DateTimeFormatter.format:(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/String;
            invokestatic com.datastax.oss.driver.internal.core.util.Strings.quote:(Ljava/lang/String;)Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 1 // java.time.LocalTime value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0    3     1  value  Ljava/time/LocalTime;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.NonNull()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
    MethodParameters:
       Name  Flags
      value  

  public java.time.LocalTime parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/time/LocalTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
        start local 1 // java.lang.String value
         0: .line 88
            aload 1 /* value */
            ifnull 1
            aload 1 /* value */
            invokevirtual java.lang.String.isEmpty:()Z
            ifne 1
            aload 1 /* value */
            ldc "NULL"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 89
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            invokestatic com.datastax.oss.driver.internal.core.util.Strings.isQuoted:(Ljava/lang/String;)Z
            ifne 4
         3: .line 94
            new java.lang.IllegalArgumentException
            dup
            ldc "time values must be enclosed by single quotes"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            iconst_1
            aload 1 /* value */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 1 /* value */
         5: .line 98
            aload 1 /* value */
            invokestatic com.datastax.oss.driver.internal.core.util.Strings.isLongLiteral:(Ljava/lang/String;)Z
            ifeq 12
         6: .line 100
            aload 1 /* value */
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokestatic java.time.LocalTime.ofNanoOfDay:(J)Ljava/time/LocalTime;
         7: areturn
         8: .line 101
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            astore 2 /* e */
        start local 2 // java.lang.NumberFormatException e
         9: .line 102
            new java.lang.IllegalArgumentException
            dup
        10: .line 103
            ldc "Cannot parse time value from \"%s\""
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* value */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            aload 2 /* e */
        11: .line 102
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.NumberFormatException e
        12: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            invokestatic java.time.LocalTime.parse:(Ljava/lang/CharSequence;)Ljava/time/LocalTime;
        13: areturn
        14: .line 109
      StackMap locals:
      StackMap stack: java.lang.RuntimeException
            astore 2 /* e */
        start local 2 // java.lang.RuntimeException e
        15: .line 110
            new java.lang.IllegalArgumentException
            dup
        16: .line 111
            ldc "Cannot parse time value from \"%s\""
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* value */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            aload 2 /* e */
        17: .line 110
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.RuntimeException e
        end local 1 // java.lang.String value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.TimeCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/TimeCodec;
            0   18     1  value  Ljava/lang/String;
            9   12     2      e  Ljava/lang/NumberFormatException;
           15   18     2      e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.NumberFormatException
          12    13      14  Class java.lang.RuntimeException
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.Nullable()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
    MethodParameters:
       Name  Flags
      value  

  public java.lang.Object decode(java.nio.ByteBuffer, com.datastax.oss.driver.api.core.ProtocolVersion);
    descriptor: (Ljava/nio/ByteBuffer;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.TimeCodec.decode:(Ljava/nio/ByteBuffer;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/time/LocalTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.TimeCodec.parse:(Ljava/lang/String;)Ljava/time/LocalTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.ByteBuffer encode(java.lang.Object, com.datastax.oss.driver.api.core.ProtocolVersion);
    descriptor: (Ljava/lang/Object;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/nio/ByteBuffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.time.LocalTime
            aload 2
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.TimeCodec.encode:(Ljava/time/LocalTime;Lcom/datastax/oss/driver/api/core/ProtocolVersion;)Ljava/nio/ByteBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String format(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.time.LocalTime
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.TimeCodec.format:(Ljava/time/LocalTime;)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lcom/datastax/oss/driver/api/core/type/codec/TypeCodec<Ljava/time/LocalTime;>;
SourceFile: "TimeCodec.java"
    RuntimeVisibleAnnotations: 
      net.jcip.annotations.ThreadSafe()