public final class org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle extends java.lang.Enum<org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle>
  minor version: 0
  major version: 59
  flags: flags: (0x4031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER, ACC_ANNOTATION
  this_class: org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
  super_class: java.lang.Enum
{
  public static final org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle NONE;
    descriptor: Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle COUNT;
    descriptor: Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle PARAM;
    descriptor: Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

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

  private static final org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle[] ENUM$VALUES;
    descriptor: [Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x101a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 33
            new org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            dup
            ldc "NONE"
            iconst_0
         1: .line 39
            ldc "none"
            invokespecial org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.<init>:(Ljava/lang/String;ILjava/lang/String;)V
            putstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.NONE:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
         2: .line 41
            new org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            dup
            ldc "COUNT"
            iconst_1
         3: .line 47
            ldc "rowcount"
            invokespecial org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.<init>:(Ljava/lang/String;ILjava/lang/String;)V
            putstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
         4: .line 49
            new org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            dup
            ldc "PARAM"
            iconst_2
         5: .line 55
            ldc "param"
            invokespecial org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.<init>:(Ljava/lang/String;ILjava/lang/String;)V
            putstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.PARAM:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
         6: .line 32
            iconst_3
            anewarray org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            dup
            iconst_0
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.NONE:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            aastore
            dup
            iconst_1
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            aastore
            dup
            iconst_2
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.PARAM:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            aastore
            putstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.ENUM$VALUES:[Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.lang.String, int, java.lang.String);
    descriptor: (Ljava/lang/String;ILjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle this
        start local 3 // java.lang.String name
         0: .line 59
            aload 0 /* this */
            aload 1
            iload 2
            invokespecial java.lang.Enum.<init>:(Ljava/lang/String;I)V
         1: .line 60
            aload 0 /* this */
            aload 3 /* name */
            putfield org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.name:Ljava/lang/String;
         2: .line 61
            return
        end local 3 // java.lang.String name
        end local 0 // org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            0    3     3  name  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      $enum$name     
      $enum$ordinal  
      name           

  public static org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle fromExternalName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String name
         0: .line 64
            aload 0 /* name */
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.NONE:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            getfield org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.name:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 65
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.NONE:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            areturn
         2: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* name */
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            getfield org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.name:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 68
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            areturn
         4: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* name */
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.PARAM:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            getfield org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.name:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 71
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.PARAM:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            areturn
         6: .line 74
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public static org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle determineDefault(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // java.lang.String customSql
        start local 1 // boolean callable
         0: .line 79
            aload 0 /* customSql */
            ifnonnull 2
         1: .line 80
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            areturn
         2: .line 83
      StackMap locals:
      StackMap stack:
            iload 1 /* callable */
            ifeq 3
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.PARAM:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            goto 4
      StackMap locals:
      StackMap stack:
         3: getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.COUNT:Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
      StackMap locals:
      StackMap stack: org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
         4: areturn
        end local 1 // boolean callable
        end local 0 // java.lang.String customSql
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0  customSql  Ljava/lang/String;
            0    5     1   callable  Z
    MethodParameters:
           Name  Flags
      customSql  
      callable   

  public static org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle[] values();
    descriptor: ()[Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=0
         0: .line 1
            getstatic org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle.ENUM$VALUES:[Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            dup
            astore 0
            iconst_0
            aload 0
            arraylength
            dup
            istore 1
            anewarray org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            dup
            astore 2
            iconst_0
            iload 1
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            aload 2
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 1
            ldc Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;
            aload 0
            invokestatic java.lang.Enum.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum;
            checkcast org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
      name  
}
Signature: Ljava/lang/Enum<Lorg/hibernate/engine/spi/ExecuteUpdateResultCheckStyle;>;
SourceFile: "ExecuteUpdateResultCheckStyle.java"