com.scalified.jpa.dsl.find.JpaFindByEntityClassDslImpl Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2018 Scalified
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
package com.scalified.jpa.dsl.find;
import com.scalified.jpa.function.ResultFunction;
import com.scalified.jpa.manager.JpaManager;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Stream;
/**
* A {@link JpaFindByEntityClassDsl} implementation
*
* @author shell
* @since 2018-02-06
*/
public class JpaFindByEntityClassDslImpl implements JpaFindByEntityClassDsl {
/**
* An underlying {@link JpaManager}
*/
private final JpaManager manager;
/**
* An entity class
*/
private final Class entityClass;
/**
* Creates {@link JpaFindByEntityClassDslImpl} instance
*
* @param manager an underlying {@link JpaManager}
* @param entityClass an entity class
*/
public JpaFindByEntityClassDslImpl(JpaManager manager, Class entityClass) {
this.manager = manager;
this.entityClass = entityClass;
}
/**
* Returns the entity found by its specified {@code key}
*
* @param primaryKey a primary key of an entity
* @param type of a primary key of an entity
* @return entity found by its specified {@code key}
*/
@Override
public T one(K primaryKey) {
return manager.find(entityClass, primaryKey);
}
/**
* Returns a list of all found entities by their class
*
* @return a list of all found entities
*/
@Override
public List list() {
return manager.find(entityClass);
}
/**
* Returns a set of all found entities by their class
*
* @return a set of all found entities
*/
@Override
public Set set() {
return new LinkedHashSet<>(list());
}
/**
* Returns some generic result by entity class after applying the
* specified {@code resultFunction}
*
* @param resultFunction a function to apply on result
* @param type of generic result
* @return some generic result
*/
@Override
public R some(ResultFunction resultFunction) {
return manager.find(entityClass, resultFunction);
}
/**
* Returns a stream of all found entities by their class
*
* @return a stream of all found entities
*/
@Override
public Stream stream() {
return manager.stream(entityClass);
}
/**
* Returns a stream of all found entities by their class and the specified
* {@code chunkSize}
*
* @param chunkSize size of a chunk
* @return a stream of all found entities
*/
@Override
public Stream stream(int chunkSize) {
return manager.stream(entityClass, chunkSize);
}
/**
* Returns the first found entity by class
*
* @return the first found entity
*/
@Override
public Optional first() {
return list().stream().findFirst();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy