public class org.hibernate.dialect.function.SQLFunctionTemplate implements org.hibernate.dialect.function.SQLFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.dialect.function.SQLFunctionTemplate
  super_class: java.lang.Object
{
  private final org.hibernate.type.Type type;
    descriptor: Lorg/hibernate/type/Type;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hibernate.dialect.function.TemplateRenderer renderer;
    descriptor: Lorg/hibernate/dialect/function/TemplateRenderer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean hasParenthesesIfNoArgs;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.hibernate.type.Type, java.lang.String);
    descriptor: (Lorg/hibernate/type/Type;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
        start local 1 // org.hibernate.type.Type type
        start local 2 // java.lang.String template
         0: .line 57
            aload 0 /* this */
            aload 1 /* type */
            aload 2 /* template */
            iconst_1
            invokespecial org.hibernate.dialect.function.SQLFunctionTemplate.<init>:(Lorg/hibernate/type/Type;Ljava/lang/String;Z)V
         1: .line 58
            return
        end local 2 // java.lang.String template
        end local 1 // org.hibernate.type.Type type
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;
            0    2     1      type  Lorg/hibernate/type/Type;
            0    2     2  template  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      type      
      template  

  public void <init>(org.hibernate.type.Type, java.lang.String, boolean);
    descriptor: (Lorg/hibernate/type/Type;Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
        start local 1 // org.hibernate.type.Type type
        start local 2 // java.lang.String template
        start local 3 // boolean hasParenthesesIfNoArgs
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            aload 1 /* type */
            putfield org.hibernate.dialect.function.SQLFunctionTemplate.type:Lorg/hibernate/type/Type;
         2: .line 69
            aload 0 /* this */
            new org.hibernate.dialect.function.TemplateRenderer
            dup
            aload 2 /* template */
            invokespecial org.hibernate.dialect.function.TemplateRenderer.<init>:(Ljava/lang/String;)V
            putfield org.hibernate.dialect.function.SQLFunctionTemplate.renderer:Lorg/hibernate/dialect/function/TemplateRenderer;
         3: .line 70
            aload 0 /* this */
            iload 3 /* hasParenthesesIfNoArgs */
            putfield org.hibernate.dialect.function.SQLFunctionTemplate.hasParenthesesIfNoArgs:Z
         4: .line 71
            return
        end local 3 // boolean hasParenthesesIfNoArgs
        end local 2 // java.lang.String template
        end local 1 // org.hibernate.type.Type type
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    5     0                    this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;
            0    5     1                    type  Lorg/hibernate/type/Type;
            0    5     2                template  Ljava/lang/String;
            0    5     3  hasParenthesesIfNoArgs  Z
    MethodParameters:
                        Name  Flags
      type                    
      template                
      hasParenthesesIfNoArgs  

  public java.lang.String render(org.hibernate.type.Type, java.util.List, org.hibernate.engine.spi.SessionFactoryImplementor);
    descriptor: (Lorg/hibernate/type/Type;Ljava/util/List;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
        start local 1 // org.hibernate.type.Type argumentType
        start local 2 // java.util.List args
        start local 3 // org.hibernate.engine.spi.SessionFactoryImplementor factory
         0: .line 75
            aload 0 /* this */
            getfield org.hibernate.dialect.function.SQLFunctionTemplate.renderer:Lorg/hibernate/dialect/function/TemplateRenderer;
            aload 2 /* args */
            aload 3 /* factory */
            invokevirtual org.hibernate.dialect.function.TemplateRenderer.render:(Ljava/util/List;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Ljava/lang/String;
            areturn
        end local 3 // org.hibernate.engine.spi.SessionFactoryImplementor factory
        end local 2 // java.util.List args
        end local 1 // org.hibernate.type.Type argumentType
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;
            0    1     1  argumentType  Lorg/hibernate/type/Type;
            0    1     2          args  Ljava/util/List;
            0    1     3       factory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
    MethodParameters:
              Name  Flags
      argumentType  
      args          
      factory       

  public org.hibernate.type.Type getReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping);
    descriptor: (Lorg/hibernate/type/Type;Lorg/hibernate/engine/spi/Mapping;)Lorg/hibernate/type/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
        start local 1 // org.hibernate.type.Type argumentType
        start local 2 // org.hibernate.engine.spi.Mapping mapping
         0: .line 80
            aload 0 /* this */
            getfield org.hibernate.dialect.function.SQLFunctionTemplate.type:Lorg/hibernate/type/Type;
            areturn
        end local 2 // org.hibernate.engine.spi.Mapping mapping
        end local 1 // org.hibernate.type.Type argumentType
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;
            0    1     1  argumentType  Lorg/hibernate/type/Type;
            0    1     2       mapping  Lorg/hibernate/engine/spi/Mapping;
    Exceptions:
      throws org.hibernate.QueryException
    MethodParameters:
              Name  Flags
      argumentType  
      mapping       

  public boolean hasArguments();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
         0: .line 85
            aload 0 /* this */
            getfield org.hibernate.dialect.function.SQLFunctionTemplate.renderer:Lorg/hibernate/dialect/function/TemplateRenderer;
            invokevirtual org.hibernate.dialect.function.TemplateRenderer.getAnticipatedNumberOfArguments:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;

  public boolean hasParenthesesIfNoArguments();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
         0: .line 90
            aload 0 /* this */
            getfield org.hibernate.dialect.function.SQLFunctionTemplate.hasParenthesesIfNoArgs:Z
            ireturn
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
         0: .line 95
            aload 0 /* this */
            getfield org.hibernate.dialect.function.SQLFunctionTemplate.renderer:Lorg/hibernate/dialect/function/TemplateRenderer;
            invokevirtual org.hibernate.dialect.function.TemplateRenderer.getTemplate:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.dialect.function.SQLFunctionTemplate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/dialect/function/SQLFunctionTemplate;
}
SourceFile: "SQLFunctionTemplate.java"