import com.blazebit.collection.CollectionUtils;
import com.blazebit.text.StringUtil;
import java.util.Arrays;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
List<Integer> oddNumbers = CollectionUtils.filter(numbers, n -> n % 2 != 0);
String[] words = {"Hello", "World"};
String sentence = StringUtil.join(words, " ");
}
}
<dependencies>
<dependency>
<groupId>com.blazebit</groupId>
<artifactId>blaze-common-utils</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>