
com.speedment.runtime.field.internal.expression.AbstractFieldMapper Maven / Gradle / Ivy
/**
*
* Copyright (c) 2006-2018, Speedment, Inc. All Rights Reserved.
*
* 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 com.speedment.runtime.field.internal.expression;
import com.speedment.runtime.compute.expression.Expression;
import com.speedment.runtime.compute.trait.ToNullable;
import com.speedment.runtime.field.ReferenceField;
import com.speedment.runtime.field.expression.FieldMapper;
import java.util.function.Predicate;
import static java.util.Objects.requireNonNull;
/**
* Abstract base implementation of {@link FieldMapper}.
*
* @author Emil Forslund
* @since 3.1.0
*/
abstract class AbstractFieldMapper, MAPPER>
implements FieldMapper {
final ReferenceField field;
final MAPPER mapper;
AbstractFieldMapper(ReferenceField field, MAPPER mapper) {
this.field = requireNonNull(field);
this.mapper = requireNonNull(mapper);
}
@Override
public ReferenceField getField() {
return field;
}
@Override
public MAPPER getMapper() {
return mapper;
}
@Override
public Predicate isNull() {
return field.isNull();
}
@Override
public Predicate isNotNull() {
return field.isNotNull();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy