All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
manifold.collections.extensions.java.util.Collection.ManifoldCollectionExt Maven / Gradle / Ivy
/*
* Copyright (c) 2018 - Manifold Systems LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package manifold.collections.extensions.java.util.Collection;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collector;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import manifold.ext.rt.api.Extension;
import manifold.ext.rt.api.This;
import manifold.rt.api.util.ManObjectUtil;
@Extension
public class ManifoldCollectionExt
{
//=================================================================
// Straight stream pass throughs
//=================================================================
public static Stream map( @This Collection thiz, Function super E, R> mapper )
{
return thiz.stream().map( mapper );
}
public static Stream filter( @This Collection thiz, Predicate super E> predicate )
{
return thiz.stream().filter( predicate );
}
public static R collect( @This Collection thiz, Collector super E, A, R> collector )
{
return thiz.stream().collect( collector );
}
public static Stream distinct( @This Collection thiz )
{
return thiz.stream().distinct();
}
public static Stream sorted( @This Collection thiz )
{
return thiz.stream().sorted();
}
public static Stream sorted( @This Collection thiz, Comparator super E> comparator )
{
return thiz.stream().sorted( comparator );
}
public static E reduce( @This Collection thiz, E identity, BinaryOperator accumulator )
{
return thiz.stream().reduce( identity, accumulator );
}
public static boolean anyMatch( @This Collection thiz, Predicate super E> comparator )
{
return thiz.stream().anyMatch( comparator );
}
public static boolean allMatch( @This Collection thiz, Predicate super E> comparator )
{
return thiz.stream().allMatch( comparator );
}
public static boolean noneMatch( @This Collection thiz, Predicate super E> comparator )
{
return thiz.stream().noneMatch( comparator );
}
//=================================================================
// Remove Optional
//=================================================================
public static E reduce( @This Collection thiz, BinaryOperator accumulator )
{
return thiz.stream().reduce( accumulator ).orElse( null );
}
public static E min( @This Collection thiz, Comparator super E> comparator )
{
return thiz.stream().min( comparator ).orElse( null );
}
public static E max( @This Collection thiz, Comparator super E> comparator )
{
return thiz.stream().max( comparator ).orElse( null );
}
//=================================================================
// Embellishments
//=================================================================
/**
* Adds all elements of the given Iterable to this Collection
*/
public static boolean addAll( @This Collection thiz, Iterable extends E> elements )
{
if( elements instanceof Collection )
{
//noinspection unchecked
return thiz.addAll( (Collection extends E>)elements );
}
else
{
boolean result = false;
for( E item : elements )
{
if( thiz.add( item ) )
{
result = true;
}
}
return result;
}
}
public static String join( @This Collection thiz, CharSequence delimiter )
{
return thiz.stream().map( obj -> ManObjectUtil.toString( obj, "" ) ).collect( Collectors.joining( delimiter ) );
}
public static List toList( @This Collection thiz )
{
return new ArrayList<>( thiz );
}
public static Set toSet( @This Collection thiz )
{
return new LinkedHashSet<>( thiz );
}
public static Map toMap( @This Collection thiz, Function super E, K> keyMapper, Function super E, V> valueMapper )
{
return thiz.stream().collect( Collectors.toMap( keyMapper, valueMapper ) );
}
public static Map toMap( @This Collection thiz, Function super E, K> keyMapper )
{
return thiz.stream().collect( Collectors.toMap( keyMapper, Function.identity() ) );
}
public static Map> groupingBy( @This Collection thiz, Function super E, V> valueMapper )
{
return thiz.stream().collect( Collectors.groupingBy( valueMapper ) );
}
}