final class org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter implements org.springframework.core.convert.converter.ConditionalGenericConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter
  super_class: java.lang.Object
{
  private final org.springframework.core.convert.converter.ConverterFactory<java.lang.Object, java.lang.Object> converterFactory;
    descriptor: Lorg/springframework/core/convert/converter/ConverterFactory;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/springframework/core/convert/converter/ConverterFactory<Ljava/lang/Object;Ljava/lang/Object;>;

  private final org.springframework.core.convert.converter.GenericConverter$ConvertiblePair typeInfo;
    descriptor: Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final org.springframework.core.convert.support.GenericConversionService this$0;
    descriptor: Lorg/springframework/core/convert/support/GenericConversionService;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(org.springframework.core.convert.converter.ConverterFactory<?, ?>, org.springframework.core.convert.converter.GenericConverter$ConvertiblePair);
    descriptor: (Lorg/springframework/core/convert/support/GenericConversionService;Lorg/springframework/core/convert/converter/ConverterFactory;Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
        start local 2 // org.springframework.core.convert.converter.ConverterFactory converterFactory
        start local 3 // org.springframework.core.convert.converter.GenericConverter$ConvertiblePair typeInfo
         0: .line 405
            aload 0 /* this */
            aload 1
            putfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.this$0:Lorg/springframework/core/convert/support/GenericConversionService;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 406
            aload 0 /* this */
            aload 2 /* converterFactory */
            putfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
         2: .line 407
            aload 0 /* this */
            aload 3 /* typeInfo */
            putfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.typeInfo:Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;
         3: .line 408
            return
        end local 3 // org.springframework.core.convert.converter.GenericConverter$ConvertiblePair typeInfo
        end local 2 // org.springframework.core.convert.converter.ConverterFactory converterFactory
        end local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter;
            0    4     2  converterFactory  Lorg/springframework/core/convert/converter/ConverterFactory<**>;
            0    4     3          typeInfo  Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;
    Signature: (Lorg/springframework/core/convert/converter/ConverterFactory<**>;Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;)V
    MethodParameters:
                  Name  Flags
      this$0            final
      converterFactory  
      typeInfo          

  public java.util.Set<org.springframework.core.convert.converter.GenericConverter$ConvertiblePair> getConvertibleTypes();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
         0: .line 412
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.typeInfo:Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;
            invokestatic java.util.Collections.singleton:(Ljava/lang/Object;)Ljava/util/Set;
            areturn
        end local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter;
    Signature: ()Ljava/util/Set<Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;>;

  public boolean matches(org.springframework.core.convert.TypeDescriptor, org.springframework.core.convert.TypeDescriptor);
    descriptor: (Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
        start local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 2 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 417
            iconst_1
            istore 3 /* matches */
        start local 3 // boolean matches
         1: .line 418
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
            instanceof org.springframework.core.convert.converter.ConditionalConverter
            ifeq 3
         2: .line 419
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
            checkcast org.springframework.core.convert.converter.ConditionalConverter
            aload 1 /* sourceType */
            aload 2 /* targetType */
            invokeinterface org.springframework.core.convert.converter.ConditionalConverter.matches:(Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Z
            istore 3 /* matches */
         3: .line 421
      StackMap locals: int
      StackMap stack:
            iload 3 /* matches */
            ifeq 7
         4: .line 422
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
            aload 2 /* targetType */
            invokevirtual org.springframework.core.convert.TypeDescriptor.getType:()Ljava/lang/Class;
            invokeinterface org.springframework.core.convert.converter.ConverterFactory.getConverter:(Ljava/lang/Class;)Lorg/springframework/core/convert/converter/Converter;
            astore 4 /* converter */
        start local 4 // org.springframework.core.convert.converter.Converter converter
         5: .line 423
            aload 4 /* converter */
            instanceof org.springframework.core.convert.converter.ConditionalConverter
            ifeq 7
         6: .line 424
            aload 4 /* converter */
            checkcast org.springframework.core.convert.converter.ConditionalConverter
            aload 1 /* sourceType */
            aload 2 /* targetType */
            invokeinterface org.springframework.core.convert.converter.ConditionalConverter.matches:(Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Z
            istore 3 /* matches */
        end local 4 // org.springframework.core.convert.converter.Converter converter
         7: .line 427
      StackMap locals:
      StackMap stack:
            iload 3 /* matches */
            ireturn
        end local 3 // boolean matches
        end local 2 // org.springframework.core.convert.TypeDescriptor targetType
        end local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter;
            0    8     1  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    8     2  targetType  Lorg/springframework/core/convert/TypeDescriptor;
            1    8     3     matches  Z
            5    7     4   converter  Lorg/springframework/core/convert/converter/Converter<**>;
    MethodParameters:
            Name  Flags
      sourceType  
      targetType  

  public java.lang.Object convert(java.lang.Object, org.springframework.core.convert.TypeDescriptor, org.springframework.core.convert.TypeDescriptor);
    descriptor: (Ljava/lang/Object;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
        start local 1 // java.lang.Object source
        start local 2 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 3 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 433
            aload 1 /* source */
            ifnonnull 2
         1: .line 434
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.this$0:Lorg/springframework/core/convert/support/GenericConversionService;
            aload 2 /* sourceType */
            aload 3 /* targetType */
            invokevirtual org.springframework.core.convert.support.GenericConversionService.convertNullSource:(Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
            areturn
         2: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
            aload 3 /* targetType */
            invokevirtual org.springframework.core.convert.TypeDescriptor.getObjectType:()Ljava/lang/Class;
            invokeinterface org.springframework.core.convert.converter.ConverterFactory.getConverter:(Ljava/lang/Class;)Lorg/springframework/core/convert/converter/Converter;
            aload 1 /* source */
            invokeinterface org.springframework.core.convert.converter.Converter.convert:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 3 // org.springframework.core.convert.TypeDescriptor targetType
        end local 2 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 1 // java.lang.Object source
        end local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter;
            0    3     1      source  Ljava/lang/Object;
            0    3     2  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    3     3  targetType  Lorg/springframework/core/convert/TypeDescriptor;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
      1:
      2:
    MethodParameters:
            Name  Flags
      source      
      sourceType  
      targetType  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
         0: .line 441
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.typeInfo:Lorg/springframework/core/convert/converter/GenericConverter$ConvertiblePair;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " : "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter.converterFactory:Lorg/springframework/core/convert/converter/ConverterFactory;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter;
}
SourceFile: "GenericConversionService.java"
NestHost: org.springframework.core.convert.support.GenericConversionService
InnerClasses:
  public final ConvertiblePair = org.springframework.core.convert.converter.GenericConverter$ConvertiblePair of org.springframework.core.convert.converter.GenericConverter
  private final ConverterFactoryAdapter = org.springframework.core.convert.support.GenericConversionService$ConverterFactoryAdapter of org.springframework.core.convert.support.GenericConversionService