public class io.ebeaninternal.server.type.ScalarTypeZonedDateTime extends io.ebeaninternal.server.type.ScalarTypeBaseDateTime<java.time.ZonedDateTime>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.type.ScalarTypeZonedDateTime
  super_class: io.ebeaninternal.server.type.ScalarTypeBaseDateTime
{
  public void <init>(io.ebean.config.JsonConfig$DateTime);
    descriptor: (Lio/ebean/config/JsonConfig$DateTime;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // io.ebean.config.JsonConfig$DateTime mode
         0: .line 17
            aload 0 /* this */
            aload 1 /* mode */
            ldc Ljava/time/ZonedDateTime;
            iconst_0
            bipush 93
            invokespecial io.ebeaninternal.server.type.ScalarTypeBaseDateTime.<init>:(Lio/ebean/config/JsonConfig$DateTime;Ljava/lang/Class;ZI)V
         1: .line 18
            return
        end local 1 // io.ebean.config.JsonConfig$DateTime mode
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    2     1  mode  Lio/ebean/config/JsonConfig$DateTime;
    MethodParameters:
      Name  Flags
      mode  

  protected java.lang.String toJsonNanos(java.time.ZonedDateTime);
    descriptor: (Ljava/time/ZonedDateTime;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.time.ZonedDateTime value
         0: .line 22
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual java.time.ZonedDateTime.toEpochSecond:()J
            aload 1 /* value */
            invokevirtual java.time.ZonedDateTime.getNano:()I
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.toJsonNanos:(JI)Ljava/lang/String;
            areturn
        end local 1 // java.time.ZonedDateTime value
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1  value  Ljava/time/ZonedDateTime;
    MethodParameters:
       Name  Flags
      value  

  protected java.lang.String toJsonISO8601(java.time.ZonedDateTime);
    descriptor: (Ljava/time/ZonedDateTime;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.time.ZonedDateTime value
         0: .line 27
            aload 1 /* value */
            invokevirtual java.time.ZonedDateTime.toInstant:()Ljava/time/Instant;
            invokevirtual java.time.Instant.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.time.ZonedDateTime value
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1  value  Ljava/time/ZonedDateTime;
    MethodParameters:
       Name  Flags
      value  

  public long convertToMillis(java.time.ZonedDateTime);
    descriptor: (Ljava/time/ZonedDateTime;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.time.ZonedDateTime value
         0: .line 32
            aload 1 /* value */
            invokevirtual java.time.ZonedDateTime.toInstant:()Ljava/time/Instant;
            invokevirtual java.time.Instant.toEpochMilli:()J
            lreturn
        end local 1 // java.time.ZonedDateTime value
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1  value  Ljava/time/ZonedDateTime;
    MethodParameters:
       Name  Flags
      value  

  public java.time.ZonedDateTime convertFromMillis(long);
    descriptor: (J)Ljava/time/ZonedDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // long systemTimeMillis
         0: .line 37
            aload 0 /* this */
            lload 1 /* systemTimeMillis */
            invokestatic java.time.Instant.ofEpochMilli:(J)Ljava/time/Instant;
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromInstant:(Ljava/time/Instant;)Ljava/time/ZonedDateTime;
            areturn
        end local 1 // long systemTimeMillis
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1  systemTimeMillis  J
    MethodParameters:
                  Name  Flags
      systemTimeMillis  

  public java.time.ZonedDateTime convertFromTimestamp(java.sql.Timestamp);
    descriptor: (Ljava/sql/Timestamp;)Ljava/time/ZonedDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.sql.Timestamp ts
         0: .line 42
            aload 0 /* this */
            aload 1 /* ts */
            invokevirtual java.sql.Timestamp.toInstant:()Ljava/time/Instant;
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromInstant:(Ljava/time/Instant;)Ljava/time/ZonedDateTime;
            areturn
        end local 1 // java.sql.Timestamp ts
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1    ts  Ljava/sql/Timestamp;
    MethodParameters:
      Name  Flags
      ts    

  public java.time.ZonedDateTime convertFromInstant(java.time.Instant);
    descriptor: (Ljava/time/Instant;)Ljava/time/ZonedDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.time.Instant ts
         0: .line 47
            aload 1 /* ts */
            invokestatic java.time.ZoneId.systemDefault:()Ljava/time/ZoneId;
            invokestatic java.time.ZonedDateTime.ofInstant:(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;
            areturn
        end local 1 // java.time.Instant ts
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1    ts  Ljava/time/Instant;
    MethodParameters:
      Name  Flags
      ts    

  public java.sql.Timestamp convertToTimestamp(java.time.ZonedDateTime);
    descriptor: (Ljava/time/ZonedDateTime;)Ljava/sql/Timestamp;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.time.ZonedDateTime t
         0: .line 52
            aload 1 /* t */
            invokevirtual java.time.ZonedDateTime.toInstant:()Ljava/time/Instant;
            invokestatic java.sql.Timestamp.from:(Ljava/time/Instant;)Ljava/sql/Timestamp;
            areturn
        end local 1 // java.time.ZonedDateTime t
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    1     1     t  Ljava/time/ZonedDateTime;
    MethodParameters:
      Name  Flags
      t     

  public java.lang.Object toJdbcType(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.lang.Object value
         0: .line 57
            aload 1 /* value */
            instanceof java.sql.Timestamp
            ifeq 1
            aload 1 /* value */
            areturn
         1: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* value */
            checkcast java.time.ZonedDateTime
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertToTimestamp:(Ljava/time/ZonedDateTime;)Ljava/sql/Timestamp;
            areturn
        end local 1 // java.lang.Object value
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public java.time.ZonedDateTime toBeanType(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/time/ZonedDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
        start local 1 // java.lang.Object value
         0: .line 63
            aload 1 /* value */
            instanceof java.sql.Timestamp
            ifeq 1
            aload 0 /* this */
            aload 1 /* value */
            checkcast java.sql.Timestamp
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromTimestamp:(Ljava/sql/Timestamp;)Ljava/time/ZonedDateTime;
            areturn
         1: .line 64
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            checkcast java.time.ZonedDateTime
            areturn
        end local 1 // java.lang.Object value
        end local 0 // io.ebeaninternal.server.type.ScalarTypeZonedDateTime this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/ebeaninternal/server/type/ScalarTypeZonedDateTime;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public java.lang.Object convertFromMillis(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromMillis:(J)Ljava/time/ZonedDateTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.sql.Timestamp convertToTimestamp(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/sql/Timestamp;
    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.ZonedDateTime
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertToTimestamp:(Ljava/time/ZonedDateTime;)Ljava/sql/Timestamp;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object convertFromInstant(java.time.Instant);
    descriptor: (Ljava/time/Instant;)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 io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromInstant:(Ljava/time/Instant;)Ljava/time/ZonedDateTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public long convertToMillis(java.lang.Object);
    descriptor: (Ljava/lang/Object;)J
    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.ZonedDateTime
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertToMillis:(Ljava/time/ZonedDateTime;)J
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.lang.String toJsonISO8601(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    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.ZonedDateTime
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.toJsonISO8601:(Ljava/time/ZonedDateTime;)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.lang.String toJsonNanos(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    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.ZonedDateTime
            invokevirtual io.ebeaninternal.server.type.ScalarTypeZonedDateTime.toJsonNanos:(Ljava/time/ZonedDateTime;)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object toBeanType(java.lang.Object);
    descriptor: (Ljava/lang/Object;)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 io.ebeaninternal.server.type.ScalarTypeZonedDateTime.toBeanType:(Ljava/lang/Object;)Ljava/time/ZonedDateTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object convertFromTimestamp(java.sql.Timestamp);
    descriptor: (Ljava/sql/Timestamp;)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 io.ebeaninternal.server.type.ScalarTypeZonedDateTime.convertFromTimestamp:(Ljava/sql/Timestamp;)Ljava/time/ZonedDateTime;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lio/ebeaninternal/server/type/ScalarTypeBaseDateTime<Ljava/time/ZonedDateTime;>;
SourceFile: "ScalarTypeZonedDateTime.java"
InnerClasses:
  public final DateTime = io.ebean.config.JsonConfig$DateTime of io.ebean.config.JsonConfig