public class com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec extends com.datastax.oss.driver.api.core.type.codec.MappingCodec<java.time.Instant, java.time.LocalDateTime>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec
  super_class: com.datastax.oss.driver.api.core.type.codec.MappingCodec
{
  private final java.time.ZoneId timeZone;
    descriptor: Ljava/time/ZoneId;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
         0: .line 49
            aload 0 /* this */
            invokestatic java.time.ZoneId.systemDefault:()Ljava/time/ZoneId;
            invokespecial com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.<init>:(Ljava/time/ZoneId;)V
         1: .line 50
            return
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/datastax/oss/driver/internal/core/type/codec/extras/time/LocalTimestampCodec;

  public void <init>(java.time.ZoneId);
    descriptor: (Ljava/time/ZoneId;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
        start local 1 // java.time.ZoneId timeZone
         0: .line 59
            aload 0 /* this */
         1: .line 60
            new com.datastax.oss.driver.internal.core.type.codec.TimestampCodec
            dup
            aload 1 /* timeZone */
            ldc "timeZone cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.time.ZoneId
            invokespecial com.datastax.oss.driver.internal.core.type.codec.TimestampCodec.<init>:(Ljava/time/ZoneId;)V
         2: .line 61
            getstatic com.datastax.oss.driver.api.core.type.reflect.GenericType.LOCAL_DATE_TIME:Lcom/datastax/oss/driver/api/core/type/reflect/GenericType;
            invokespecial com.datastax.oss.driver.api.core.type.codec.MappingCodec.<init>:(Lcom/datastax/oss/driver/api/core/type/codec/TypeCodec;Lcom/datastax/oss/driver/api/core/type/reflect/GenericType;)V
         3: .line 62
            aload 0 /* this */
            aload 1 /* timeZone */
            putfield com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.timeZone:Ljava/time/ZoneId;
         4: .line 63
            return
        end local 1 // java.time.ZoneId timeZone
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/datastax/oss/driver/internal/core/type/codec/extras/time/LocalTimestampCodec;
            0    5     1  timeZone  Ljava/time/ZoneId;
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
          Name  Flags
      timeZone  

  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.extras.time.LocalTimestampCodec this
        start local 1 // java.lang.Object value
         0: .line 67
            aload 1 /* value */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 68
            aload 1 /* value */
            instanceof java.time.LocalDateTime
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/extras/time/LocalTimestampCodec;
            0    2     1  value  Ljava/lang/Object;
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.NonNull()
    MethodParameters:
       Name  Flags
      value  

  protected java.time.LocalDateTime innerToOuter(java.time.Instant);
    descriptor: (Ljava/time/Instant;)Ljava/time/LocalDateTime;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
        start local 1 // java.time.Instant value
         0: .line 74
            aload 1 /* value */
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* value */
            aload 0 /* this */
            getfield com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.timeZone:Ljava/time/ZoneId;
            invokestatic java.time.LocalDateTime.ofInstant:(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/LocalDateTime;
      StackMap locals:
      StackMap stack: java.time.LocalDateTime
         2: areturn
        end local 1 // java.time.Instant value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/extras/time/LocalTimestampCodec;
            0    3     1  value  Ljava/time/Instant;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.Nullable()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
    MethodParameters:
       Name  Flags
      value  

  protected java.time.Instant outerToInner(java.time.LocalDateTime);
    descriptor: (Ljava/time/LocalDateTime;)Ljava/time/Instant;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
        start local 1 // java.time.LocalDateTime value
         0: .line 80
            aload 1 /* value */
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* value */
            aload 0 /* this */
            getfield com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.timeZone:Ljava/time/ZoneId;
            invokevirtual java.time.LocalDateTime.atZone:(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;
            invokevirtual java.time.ZonedDateTime.toInstant:()Ljava/time/Instant;
      StackMap locals:
      StackMap stack: java.time.Instant
         2: areturn
        end local 1 // java.time.LocalDateTime value
        end local 0 // com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/datastax/oss/driver/internal/core/type/codec/extras/time/LocalTimestampCodec;
            0    3     1  value  Ljava/time/LocalDateTime;
    RuntimeInvisibleAnnotations: 
      edu.umd.cs.findbugs.annotations.Nullable()
    RuntimeInvisibleParameterAnnotations: 
      0:
        edu.umd.cs.findbugs.annotations.Nullable()
    MethodParameters:
       Name  Flags
      value  

  protected java.lang.Object outerToInner(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.time.LocalDateTime
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.outerToInner:(Ljava/time/LocalDateTime;)Ljava/time/Instant;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.lang.Object innerToOuter(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.time.Instant
            invokevirtual com.datastax.oss.driver.internal.core.type.codec.extras.time.LocalTimestampCodec.innerToOuter:(Ljava/time/Instant;)Ljava/time/LocalDateTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/datastax/oss/driver/api/core/type/codec/MappingCodec<Ljava/time/Instant;Ljava/time/LocalDateTime;>;
SourceFile: "LocalTimestampCodec.java"
    RuntimeVisibleAnnotations: 
      net.jcip.annotations.Immutable()