public class org.hibernate.boot.model.relational.Sequence implements org.hibernate.boot.model.relational.Exportable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.boot.model.relational.Sequence
  super_class: java.lang.Object
{
  private final org.hibernate.boot.model.relational.QualifiedSequenceName name;
    descriptor: Lorg/hibernate/boot/model/relational/QualifiedSequenceName;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String exportIdentifier;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int initialValue;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int incrementSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.hibernate.boot.model.naming.Identifier, org.hibernate.boot.model.naming.Identifier, org.hibernate.boot.model.naming.Identifier);
    descriptor: (Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.hibernate.boot.model.relational.Sequence this
        start local 1 // org.hibernate.boot.model.naming.Identifier catalogName
        start local 2 // org.hibernate.boot.model.naming.Identifier schemaName
        start local 3 // org.hibernate.boot.model.naming.Identifier sequenceName
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 29
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.boot.model.relational.Sequence.initialValue:I
         2: .line 30
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.boot.model.relational.Sequence.incrementSize:I
         3: .line 33
            aload 0 /* this */
            new org.hibernate.boot.model.relational.QualifiedSequenceName
            dup
            aload 1 /* catalogName */
            aload 2 /* schemaName */
            aload 3 /* sequenceName */
            invokespecial org.hibernate.boot.model.relational.QualifiedSequenceName.<init>:(Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;)V
            putfield org.hibernate.boot.model.relational.Sequence.name:Lorg/hibernate/boot/model/relational/QualifiedSequenceName;
         4: .line 34
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.name:Lorg/hibernate/boot/model/relational/QualifiedSequenceName;
            invokevirtual org.hibernate.boot.model.relational.QualifiedSequenceName.render:()Ljava/lang/String;
            putfield org.hibernate.boot.model.relational.Sequence.exportIdentifier:Ljava/lang/String;
         5: .line 35
            return
        end local 3 // org.hibernate.boot.model.naming.Identifier sequenceName
        end local 2 // org.hibernate.boot.model.naming.Identifier schemaName
        end local 1 // org.hibernate.boot.model.naming.Identifier catalogName
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/hibernate/boot/model/relational/Sequence;
            0    6     1   catalogName  Lorg/hibernate/boot/model/naming/Identifier;
            0    6     2    schemaName  Lorg/hibernate/boot/model/naming/Identifier;
            0    6     3  sequenceName  Lorg/hibernate/boot/model/naming/Identifier;
    MethodParameters:
              Name  Flags
      catalogName   
      schemaName    
      sequenceName  

  public void <init>(org.hibernate.boot.model.naming.Identifier, org.hibernate.boot.model.naming.Identifier, org.hibernate.boot.model.naming.Identifier, int, int);
    descriptor: (Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // org.hibernate.boot.model.relational.Sequence this
        start local 1 // org.hibernate.boot.model.naming.Identifier catalogName
        start local 2 // org.hibernate.boot.model.naming.Identifier schemaName
        start local 3 // org.hibernate.boot.model.naming.Identifier sequenceName
        start local 4 // int initialValue
        start local 5 // int incrementSize
         0: .line 43
            aload 0 /* this */
            aload 1 /* catalogName */
            aload 2 /* schemaName */
            aload 3 /* sequenceName */
            invokespecial org.hibernate.boot.model.relational.Sequence.<init>:(Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;Lorg/hibernate/boot/model/naming/Identifier;)V
         1: .line 44
            aload 0 /* this */
            iload 4 /* initialValue */
            putfield org.hibernate.boot.model.relational.Sequence.initialValue:I
         2: .line 45
            aload 0 /* this */
            iload 5 /* incrementSize */
            putfield org.hibernate.boot.model.relational.Sequence.incrementSize:I
         3: .line 46
            return
        end local 5 // int incrementSize
        end local 4 // int initialValue
        end local 3 // org.hibernate.boot.model.naming.Identifier sequenceName
        end local 2 // org.hibernate.boot.model.naming.Identifier schemaName
        end local 1 // org.hibernate.boot.model.naming.Identifier catalogName
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/hibernate/boot/model/relational/Sequence;
            0    4     1    catalogName  Lorg/hibernate/boot/model/naming/Identifier;
            0    4     2     schemaName  Lorg/hibernate/boot/model/naming/Identifier;
            0    4     3   sequenceName  Lorg/hibernate/boot/model/naming/Identifier;
            0    4     4   initialValue  I
            0    4     5  incrementSize  I
    MethodParameters:
               Name  Flags
      catalogName    
      schemaName     
      sequenceName   
      initialValue   
      incrementSize  

  public org.hibernate.boot.model.relational.QualifiedSequenceName getName();
    descriptor: ()Lorg/hibernate/boot/model/relational/QualifiedSequenceName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.relational.Sequence this
         0: .line 49
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.name:Lorg/hibernate/boot/model/relational/QualifiedSequenceName;
            areturn
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/relational/Sequence;

  public java.lang.String getExportIdentifier();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.relational.Sequence this
         0: .line 54
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.exportIdentifier:Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/relational/Sequence;

  public int getInitialValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.relational.Sequence this
         0: .line 58
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.initialValue:I
            ireturn
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/relational/Sequence;

  public int getIncrementSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.boot.model.relational.Sequence this
         0: .line 62
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.incrementSize:I
            ireturn
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/boot/model/relational/Sequence;

  public void validate(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // org.hibernate.boot.model.relational.Sequence this
        start local 1 // int initialValue
        start local 2 // int incrementSize
         0: .line 66
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.initialValue:I
            iload 1 /* initialValue */
            if_icmpeq 8
         1: .line 67
            new org.hibernate.HibernateException
            dup
         2: .line 69
            ldc "Multiple references to database sequence [%s] were encountered attempting to set conflicting values for 'initial value'.  Found [%s] and [%s]"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
         3: .line 71
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.exportIdentifier:Ljava/lang/String;
            aastore
            dup
            iconst_1
         4: .line 72
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.initialValue:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
         5: .line 73
            iload 1 /* initialValue */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         6: .line 68
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         7: .line 67
            invokespecial org.hibernate.HibernateException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.incrementSize:I
            iload 2 /* incrementSize */
            if_icmpeq 16
         9: .line 78
            new org.hibernate.HibernateException
            dup
        10: .line 80
            ldc "Multiple references to database sequence [%s] were encountered attempting to set conflicting values for 'increment size'.  Found [%s] and [%s]"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
        11: .line 82
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.exportIdentifier:Ljava/lang/String;
            aastore
            dup
            iconst_1
        12: .line 83
            aload 0 /* this */
            getfield org.hibernate.boot.model.relational.Sequence.incrementSize:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
        13: .line 84
            iload 2 /* incrementSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        14: .line 79
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        15: .line 78
            invokespecial org.hibernate.HibernateException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 88
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int incrementSize
        end local 1 // int initialValue
        end local 0 // org.hibernate.boot.model.relational.Sequence this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/hibernate/boot/model/relational/Sequence;
            0   17     1   initialValue  I
            0   17     2  incrementSize  I
    MethodParameters:
               Name  Flags
      initialValue   
      incrementSize  
}
SourceFile: "Sequence.java"
NestMembers:
  org.hibernate.boot.model.relational.Sequence$Name
InnerClasses:
  public Name = org.hibernate.boot.model.relational.Sequence$Name of org.hibernate.boot.model.relational.Sequence