You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Split a string of references, that may be split with '{@code ,}', or '{@code ;}', or '{@code |}' into a List of {@link Resource}.
604
+
*
490
605
* <p>
491
-
* Each part of the input string could be path references (unix or windows style), string URI references, or even glob references (eg: {@code /path/to/libs/*}).
606
+
* Each part of the input string could be path references (UNIX or windows style), string URI references, or even glob references (eg: {@code /path/to/libs/*}).
492
607
* </p>
608
+
*
609
+
* <p>
610
+
* Convenience method for {@code split(string, ",;|", false)}
611
+
* </p>
612
+
*
493
613
* <p>
494
614
* If the result of processing the input segment is a java archive, it will not automatically be mounted, the caller must perform the mount if necessary
495
615
* </p>
496
616
*
617
+
* <p>
618
+
* Each call may allocate a new JVM resource, whose lifecycle
619
+
* is tied to this ResourceFactory implementation.
620
+
* </p>
621
+
*
622
+
* <p>
623
+
* This method is used to create a List of root (or base) resources.
624
+
* Consider using {@link #combine(Resource...)} to make them into a single {@link Resource}.
625
+
* Child resources of these resources, should be created using {@link Resource#resolve(String)}
* Split a string of references, that may be split with '{@code ,}', or '{@code ;}', or '{@code |}' into a List of {@link Resource}.
638
+
*
639
+
* <p>
640
+
* Each part of the input string could be path references (UNIX or windows style), string URI references, or even glob references (eg: {@code /path/to/libs/*}).
641
+
* </p>
642
+
*
643
+
* <p>
644
+
* Convenience method for {@code split(string, ",;|", unwrap)}
645
+
* </p>
646
+
*
647
+
* <p>
648
+
* If the result of processing the input segment is a java archive, it will not automatically be mounted, the caller must perform the mount if necessary
649
+
* </p>
650
+
*
651
+
* <p>
652
+
* Each call may allocate a new JVM resource, whose lifecycle
653
+
* is tied to this ResourceFactory implementation.
654
+
* </p>
655
+
*
656
+
* <p>
657
+
* This method is used to create a List of root (or base) resources.
658
+
* Consider using {@link #combine(Resource...)} to make them into a single {@link Resource}.
659
+
* Child resources of these resources, should be created using {@link Resource#resolve(String)}
660
+
* </p>
661
+
*
662
+
* @param str the input string of references
663
+
* @param unwrap if true {@code jar:file} references will be unwrapped back to just the container
* Split a string of references, that may be split with '{@code ,}', or '{@code ;}', or '{@code |}' into a List of {@link Resource}.
673
+
*
674
+
* <p>
675
+
* Each part of the input string could be path references (UNIX or windows style), string URI references, or even glob references (eg: {@code /path/to/libs/*}).
676
+
* </p>
677
+
*
678
+
* <p>
679
+
* Convenience method for {@code split(string, delim, false)}
680
+
* </p>
681
+
*
682
+
* <p>
683
+
* If the result of processing the input segment is a java archive, it will not automatically be mounted, the caller must perform the mount if necessary
684
+
* </p>
685
+
*
686
+
* <p>
687
+
* Each call may allocate a new JVM resource, whose lifecycle
688
+
* is tied to this ResourceFactory implementation.
689
+
* </p>
690
+
*
691
+
* <p>
692
+
* This method is used to create a List of root (or base) resources.
693
+
* Consider using {@link #combine(Resource...)} to make them into a single {@link Resource}.
694
+
* Child resources of these resources, should be created using {@link Resource#resolve(String)}
695
+
* </p>
696
+
*
697
+
* @param str the input string of references
698
+
* @param delim if true {@code jar:file} references will be unwrapped back to just the container
0 commit comments