All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.paganini2008.devtools.beans.streaming.Select Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.paganini2008.devtools.beans.streaming;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collectors;

import com.github.paganini2008.devtools.collection.ListUtils;
import com.github.paganini2008.devtools.jdbc.ResultSetSlice;

/**
 * 
 * Select
 * 
 * @author Fred Feng
 * @version 1.0
 */
public class Select implements Selectable {

	private List content;

	Select(List content) {
		this.content = content;
	}

	public static  Select from(Collection content) {
		return new Select(content instanceof List ? (List) content : new ArrayList(content));
	}

	public Selectable filter(Predicate predicate) {
		content = content.stream().filter(predicate).collect(Collectors.toList());
		return this;
	}

	public Selectable distinct() {
		content = content.stream().distinct().collect(Collectors.toList());
		return this;
	}

	public Selectable orderBy(Sort sort) {
		content.sort(sort);
		return this;
	}

	public  Groupable groupBy(Function function, String attributeName) {
		return new Groups(content).groupBy(function, attributeName);
	}

	public List list(int maxResults, int firstResult) {
		return ListUtils.slice(content, maxResults, firstResult);
	}

	public int totalCount() {
		return content.size();
	}

	public  ResultSetSlice setTransformer(Transformer transformer) {
		return new MemoryResultSetSlice(content, transformer);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy