final class org.springframework.boot.convert.CollectionToDelimitedStringConverter implements org.springframework.core.convert.converter.ConditionalGenericConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.springframework.boot.convert.CollectionToDelimitedStringConverter
  super_class: java.lang.Object
{
  private final org.springframework.core.convert.ConversionService conversionService;
    descriptor: Lorg/springframework/core/convert/ConversionService;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.springframework.core.convert.ConversionService);
    descriptor: (Lorg/springframework/core/convert/ConversionService;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 1 // org.springframework.core.convert.ConversionService conversionService
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* conversionService */
            putfield org.springframework.boot.convert.CollectionToDelimitedStringConverter.conversionService:Lorg/springframework/core/convert/ConversionService;
         2: .line 39
            return
        end local 1 // org.springframework.core.convert.ConversionService conversionService
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    3     1  conversionService  Lorg/springframework/core/convert/ConversionService;
    MethodParameters:
                   Name  Flags
      conversionService  

  public java.util.Set<org.springframework.core.convert.converter.GenericConverter$ConvertiblePair> getConvertibleTypes();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
         0: .line 43
            new org.springframework.core.convert.converter.GenericConverter$ConvertiblePair
            dup
            ldc Ljava/util/Collection;
            ldc Ljava/lang/String;
            invokespecial org.springframework.core.convert.converter.GenericConverter$ConvertiblePair.<init>:(Ljava/lang/Class;Ljava/lang/Class;)V
            invokestatic java.util.Collections.singleton:(Ljava/lang/Object;)Ljava/util/Set;
            areturn
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
    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=4, args_size=3
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 2 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 48
            aload 1 /* sourceType */
            invokevirtual org.springframework.core.convert.TypeDescriptor.getElementTypeDescriptor:()Lorg/springframework/core/convert/TypeDescriptor;
            astore 3 /* sourceElementType */
        start local 3 // org.springframework.core.convert.TypeDescriptor sourceElementType
         1: .line 49
            aload 2 /* targetType */
            ifnull 2
            aload 3 /* sourceElementType */
            ifnonnull 3
         2: .line 50
      StackMap locals: org.springframework.core.convert.TypeDescriptor
      StackMap stack:
            iconst_1
            ireturn
         3: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.boot.convert.CollectionToDelimitedStringConverter.conversionService:Lorg/springframework/core/convert/ConversionService;
            aload 3 /* sourceElementType */
            aload 2 /* targetType */
            invokeinterface org.springframework.core.convert.ConversionService.canConvert:(Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Z
            ifne 6
         4: .line 53
            aload 3 /* sourceElementType */
            invokevirtual org.springframework.core.convert.TypeDescriptor.getType:()Ljava/lang/Class;
            aload 2 /* targetType */
            invokevirtual org.springframework.core.convert.TypeDescriptor.getType:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifne 6
         5: .line 52
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_1
            ireturn
        end local 3 // org.springframework.core.convert.TypeDescriptor sourceElementType
        end local 2 // org.springframework.core.convert.TypeDescriptor targetType
        end local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    7     1         sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    7     2         targetType  Lorg/springframework/core/convert/TypeDescriptor;
            1    7     3  sourceElementType  Lorg/springframework/core/convert/TypeDescriptor;
    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=4, locals=5, args_size=4
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter 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 58
            aload 1 /* source */
            ifnonnull 2
         1: .line 59
            aconst_null
            areturn
         2: .line 61
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            checkcast java.util.Collection
            astore 4 /* sourceCollection */
        start local 4 // java.util.Collection sourceCollection
         3: .line 62
            aload 0 /* this */
            aload 4 /* sourceCollection */
            aload 2 /* sourceType */
            aload 3 /* targetType */
            invokevirtual org.springframework.boot.convert.CollectionToDelimitedStringConverter.convert:(Ljava/util/Collection;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
            areturn
        end local 4 // java.util.Collection sourceCollection
        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.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    4     1            source  Ljava/lang/Object;
            0    4     2        sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    4     3        targetType  Lorg/springframework/core/convert/TypeDescriptor;
            3    4     4  sourceCollection  Ljava/util/Collection<*>;
    MethodParameters:
            Name  Flags
      source      
      sourceType  
      targetType  

  private  convert(java.util.Collection<?>, org.springframework.core.convert.TypeDescriptor, org.springframework.core.convert.TypeDescriptor);
    descriptor: (Ljava/util/Collection;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 1 // java.util.Collection source
        start local 2 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 3 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 66
            aload 1 /* source */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 2
         1: .line 67
            ldc ""
            areturn
         2: .line 69
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            invokeinterface java.util.Collection.stream:()Ljava/util/stream/Stream;
            aload 0 /* this */
            aload 2 /* sourceType */
            aload 3 /* targetType */
            invokedynamic apply(Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  org/springframework/boot/convert/CollectionToDelimitedStringConverter.lambda$0(Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;Ljava/lang/Object;)Ljava/lang/String; (7)
                  (Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
         3: .line 70
            aload 0 /* this */
            aload 2 /* sourceType */
            invokevirtual org.springframework.boot.convert.CollectionToDelimitedStringConverter.getDelimiter:(Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/CharSequence;
            invokestatic java.util.stream.Collectors.joining:(Ljava/lang/CharSequence;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
         4: .line 69
            areturn
        end local 3 // org.springframework.core.convert.TypeDescriptor targetType
        end local 2 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 1 // java.util.Collection source
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    5     1      source  Ljava/util/Collection<*>;
            0    5     2  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    5     3  targetType  Lorg/springframework/core/convert/TypeDescriptor;
    Signature: (Ljava/util/Collection<*>;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      source      
      sourceType  
      targetType  

  private java.lang.CharSequence getDelimiter(org.springframework.core.convert.TypeDescriptor);
    descriptor: (Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/CharSequence;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 1 // org.springframework.core.convert.TypeDescriptor sourceType
         0: .line 74
            aload 1 /* sourceType */
            ldc Lorg/springframework/boot/convert/Delimiter;
            invokevirtual org.springframework.core.convert.TypeDescriptor.getAnnotation:(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast org.springframework.boot.convert.Delimiter
            astore 2 /* annotation */
        start local 2 // org.springframework.boot.convert.Delimiter annotation
         1: .line 75
            aload 2 /* annotation */
            ifnull 2
            aload 2 /* annotation */
            invokeinterface org.springframework.boot.convert.Delimiter.value:()Ljava/lang/String;
            goto 3
      StackMap locals: org.springframework.boot.convert.Delimiter
      StackMap stack:
         2: ldc ","
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
        end local 2 // org.springframework.boot.convert.Delimiter annotation
        end local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    4     1  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            1    4     2  annotation  Lorg/springframework/boot/convert/Delimiter;
    MethodParameters:
            Name  Flags
      sourceType  

  private java.lang.String convertElement(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/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 1 // java.lang.Object element
        start local 2 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 3 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 80
            aload 0 /* this */
            getfield org.springframework.boot.convert.CollectionToDelimitedStringConverter.conversionService:Lorg/springframework/core/convert/ConversionService;
            aload 1 /* element */
            aload 2 /* sourceType */
            aload 1 /* element */
            invokevirtual org.springframework.core.convert.TypeDescriptor.elementTypeDescriptor:(Ljava/lang/Object;)Lorg/springframework/core/convert/TypeDescriptor;
            aload 3 /* targetType */
            invokeinterface org.springframework.core.convert.ConversionService.convert:(Ljava/lang/Object;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/Object;
         1: .line 79
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            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 element
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    2     1     element  Ljava/lang/Object;
            0    2     2  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    2     3  targetType  Lorg/springframework/core/convert/TypeDescriptor;
    MethodParameters:
            Name  Flags
      element     
      sourceType  
      targetType  

  private java.lang.String lambda$0(org.springframework.core.convert.TypeDescriptor, org.springframework.core.convert.TypeDescriptor, java.lang.Object);
    descriptor: (Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
        start local 3 // java.lang.Object element
         0: .line 69
            aload 0 /* this */
            aload 3 /* element */
            aload 1
            aload 2
            invokevirtual org.springframework.boot.convert.CollectionToDelimitedStringConverter.convertElement:(Ljava/lang/Object;Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)Ljava/lang/String;
            areturn
        end local 3 // java.lang.Object element
        end local 0 // org.springframework.boot.convert.CollectionToDelimitedStringConverter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/springframework/boot/convert/CollectionToDelimitedStringConverter;
            0    1     3  element  Ljava/lang/Object;
}
SourceFile: "CollectionToDelimitedStringConverter.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public final ConvertiblePair = org.springframework.core.convert.converter.GenericConverter$ConvertiblePair of org.springframework.core.convert.converter.GenericConverter