abstract class org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject
  super_class: java.lang.Object
{
  private final java.lang.reflect.Constructor<T> constructor;
    descriptor: Ljava/lang/reflect/Constructor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/reflect/Constructor<TT;>;

  protected void <init>(java.lang.reflect.Constructor<T>);
    descriptor: (Ljava/lang/reflect/Constructor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject this
        start local 1 // java.lang.reflect.Constructor constructor
         0: .line 154
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 155
            aload 0 /* this */
            aload 1 /* constructor */
            putfield org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject.constructor:Ljava/lang/reflect/Constructor;
         2: .line 156
            return
        end local 1 // java.lang.reflect.Constructor constructor
        end local 0 // org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject<TT;>;
            0    3     1  constructor  Ljava/lang/reflect/Constructor<TT;>;
    Signature: (Ljava/lang/reflect/Constructor<TT;>;)V
    MethodParameters:
             Name  Flags
      constructor  

  T instantiate(java.util.List<java.lang.Object>);
    descriptor: (Ljava/util/List;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject this
        start local 1 // java.util.List args
         0: .line 159
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject.constructor:Ljava/lang/reflect/Constructor;
            aload 1 /* args */
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            invokestatic org.springframework.beans.BeanUtils.instantiateClass:(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.List args
        end local 0 // org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject<TT;>;
            0    1     1  args  Ljava/util/List<Ljava/lang/Object;>;
    Signature: (Ljava/util/List<Ljava/lang/Object;>;)TT;
    MethodParameters:
      Name  Flags
      args  

  abstract java.util.List<org.springframework.boot.context.properties.bind.ValueObjectBinder$ConstructorParameter> getConstructorParameters();
    descriptor: ()Ljava/util/List;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Ljava/util/List<Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ConstructorParameter;>;

  static <T> org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject<T> get(org.springframework.boot.context.properties.bind.Bindable<T>, org.springframework.boot.context.properties.bind.BindConstructorProvider, org.springframework.boot.context.properties.bind.Binder$Context);
    descriptor: (Lorg/springframework/boot/context/properties/bind/Bindable;Lorg/springframework/boot/context/properties/bind/BindConstructorProvider;Lorg/springframework/boot/context/properties/bind/Binder$Context;)Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.springframework.boot.context.properties.bind.Bindable bindable
        start local 1 // org.springframework.boot.context.properties.bind.BindConstructorProvider constructorProvider
        start local 2 // org.springframework.boot.context.properties.bind.Binder$Context context
         0: .line 167
            aload 0 /* bindable */
            invokevirtual org.springframework.boot.context.properties.bind.Bindable.getType:()Lorg/springframework/core/ResolvableType;
            invokevirtual org.springframework.core.ResolvableType.resolve:()Ljava/lang/Class;
            astore 3 /* type */
        start local 3 // java.lang.Class type
         1: .line 168
            aload 3 /* type */
            ifnull 2
            aload 3 /* type */
            invokevirtual java.lang.Class.isEnum:()Z
            ifne 2
            aload 3 /* type */
            invokevirtual java.lang.Class.getModifiers:()I
            invokestatic java.lang.reflect.Modifier.isAbstract:(I)Z
            ifeq 3
         2: .line 169
      StackMap locals: java.lang.Class
      StackMap stack:
            aconst_null
            areturn
         3: .line 171
      StackMap locals:
      StackMap stack:
            aload 1 /* constructorProvider */
            aload 0 /* bindable */
         4: .line 172
            aload 2 /* context */
            invokevirtual org.springframework.boot.context.properties.bind.Binder$Context.isNestedConstructorBinding:()Z
         5: .line 171
            invokeinterface org.springframework.boot.context.properties.bind.BindConstructorProvider.getBindConstructor:(Lorg/springframework/boot/context/properties/bind/Bindable;Z)Ljava/lang/reflect/Constructor;
            astore 4 /* bindConstructor */
        start local 4 // java.lang.reflect.Constructor bindConstructor
         6: .line 173
            aload 4 /* bindConstructor */
            ifnonnull 8
         7: .line 174
            aconst_null
            areturn
         8: .line 176
      StackMap locals: java.lang.reflect.Constructor
      StackMap stack:
            aload 3 /* type */
            invokestatic org.springframework.core.KotlinDetector.isKotlinType:(Ljava/lang/Class;)Z
            ifeq 10
         9: .line 177
            aload 4 /* bindConstructor */
            aload 0 /* bindable */
            invokevirtual org.springframework.boot.context.properties.bind.Bindable.getType:()Lorg/springframework/core/ResolvableType;
            invokestatic org.springframework.boot.context.properties.bind.ValueObjectBinder$KotlinValueObject.get:(Ljava/lang/reflect/Constructor;Lorg/springframework/core/ResolvableType;)Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject;
            areturn
        10: .line 179
      StackMap locals:
      StackMap stack:
            aload 4 /* bindConstructor */
            aload 0 /* bindable */
            invokevirtual org.springframework.boot.context.properties.bind.Bindable.getType:()Lorg/springframework/core/ResolvableType;
            invokestatic org.springframework.boot.context.properties.bind.ValueObjectBinder$DefaultValueObject.get:(Ljava/lang/reflect/Constructor;Lorg/springframework/core/ResolvableType;)Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject;
            areturn
        end local 4 // java.lang.reflect.Constructor bindConstructor
        end local 3 // java.lang.Class type
        end local 2 // org.springframework.boot.context.properties.bind.Binder$Context context
        end local 1 // org.springframework.boot.context.properties.bind.BindConstructorProvider constructorProvider
        end local 0 // org.springframework.boot.context.properties.bind.Bindable bindable
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   11     0             bindable  Lorg/springframework/boot/context/properties/bind/Bindable<TT;>;
            0   11     1  constructorProvider  Lorg/springframework/boot/context/properties/bind/BindConstructorProvider;
            0   11     2              context  Lorg/springframework/boot/context/properties/bind/Binder$Context;
            1   11     3                 type  Ljava/lang/Class<TT;>;
            6   11     4      bindConstructor  Ljava/lang/reflect/Constructor<*>;
    Signature: <T:Ljava/lang/Object;>(Lorg/springframework/boot/context/properties/bind/Bindable<TT;>;Lorg/springframework/boot/context/properties/bind/BindConstructorProvider;Lorg/springframework/boot/context/properties/bind/Binder$Context;)Lorg/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject<TT;>;
    MethodParameters:
                     Name  Flags
      bindable             
      constructorProvider  
      context              
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "ValueObjectBinder.java"
NestHost: org.springframework.boot.context.properties.bind.ValueObjectBinder
InnerClasses:
  final Context = org.springframework.boot.context.properties.bind.Binder$Context of org.springframework.boot.context.properties.bind.Binder
  private ConstructorParameter = org.springframework.boot.context.properties.bind.ValueObjectBinder$ConstructorParameter of org.springframework.boot.context.properties.bind.ValueObjectBinder
  private final DefaultValueObject = org.springframework.boot.context.properties.bind.ValueObjectBinder$DefaultValueObject of org.springframework.boot.context.properties.bind.ValueObjectBinder
  private final KotlinValueObject = org.springframework.boot.context.properties.bind.ValueObjectBinder$KotlinValueObject of org.springframework.boot.context.properties.bind.ValueObjectBinder
  private abstract ValueObject = org.springframework.boot.context.properties.bind.ValueObjectBinder$ValueObject of org.springframework.boot.context.properties.bind.ValueObjectBinder