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

com.speedment.runtime.field.ReferenceField Maven / Gradle / Ivy

Go to download

A Speedment bundle that shades all dependencies into one jar. This is useful when deploying an application on a server.

The newest version!
/*
 *
 * Copyright (c) 2006-2019, 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;

import com.speedment.common.function.ToBooleanFunction;
import com.speedment.common.function.ToByteFunction;
import com.speedment.common.function.ToCharFunction;
import com.speedment.common.function.ToFloatFunction;
import com.speedment.common.function.ToShortFunction;
import com.speedment.runtime.compute.*;
import com.speedment.runtime.compute.trait.HasMapToDoubleIfPresent;
import com.speedment.runtime.config.identifier.ColumnIdentifier;
import com.speedment.runtime.field.exception.SpeedmentFieldException;
import com.speedment.runtime.field.internal.ReferenceFieldImpl;
import com.speedment.runtime.field.internal.expression.*;
import com.speedment.runtime.field.method.ReferenceGetter;
import com.speedment.runtime.field.method.ReferenceSetter;
import com.speedment.runtime.field.trait.HasReferenceOperators;
import com.speedment.runtime.field.trait.HasReferenceValue;
import com.speedment.runtime.typemapper.TypeMapper;

import java.math.BigDecimal;
import java.util.function.Function;
import java.util.function.ToDoubleFunction;
import java.util.function.ToIntFunction;
import java.util.function.ToLongFunction;

import static java.lang.String.format;

/**
 * A field that represents an object value.
 * 
 * @param   the entity type
 * @param        the database type
 * @param        the field value type
 * 
 * @author  Per Minborg
 * @author  Emil Forslund
 * @since   2.2.0
 * 
 * @see  Field
 * @see  HasReferenceOperators
 * @see  HasReferenceValue
 */
public interface ReferenceField 
extends Field, 
        HasReferenceOperators,
        HasReferenceValue,
        HasMapToDoubleIfPresent> {
    
    /**
     * Creates a new {@link ReferenceField} using the default implementation. 
     * 
     * @param     the entity type
     * @param          the database type
     * @param          the field value type
     * @param identifier  the column that this field represents
     * @param getter      method reference to the getter in the entity
     * @param setter      method reference to the setter in the entity
     * @param typeMapper  the type mapper that is applied
     * @param unique      represented column only contains unique values
     * 
     * @return the created field
     */
    static  ReferenceField create(
            ColumnIdentifier identifier,
            ReferenceGetter getter,
            ReferenceSetter setter,
            TypeMapper typeMapper,
            boolean unique) {
        
        return new ReferenceFieldImpl<>(
            identifier, getter, setter, typeMapper, unique
        );
    }

    @Override
    ReferenceField tableAlias(String tableAlias);

    /**
     * Returns an {@link ToByteNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToByteNullable
    mapToByteIfPresent(ToByteFunction mapper) {
        return new FieldToByteImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToByteNullable} expression that has the value of this
     * field, casted to a {@code byte} by first casting it to {@link Number} and
     * then invoking {@link Number#byteValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToByteNullable asByte() {
        return mapToByteIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.byteValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type byte, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToShortNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToShortNullable
    mapToShortIfPresent(ToShortFunction mapper) {
        return new FieldToShortImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToShortNullable} expression that has the value of this
     * field, casted to a {@code short} by first casting it to {@link Number}
     * and then invoking {@link Number#shortValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToShortNullable asShort() {
        return mapToShortIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.shortValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type short, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToIntNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToIntNullable
    mapToIntIfPresent(ToIntFunction mapper) {
        return new FieldToIntImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToIntNullable} expression that has the value of this
     * field, casted to a {@code int} by first casting it to {@link Number} and
     * then invoking {@link Number#intValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToIntNullable asInt() {
        return mapToIntIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.intValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type int, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToLongNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToLongNullable
    mapToLongIfPresent(ToLongFunction mapper) {
        return new FieldToLongImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToLongNullable} expression that has the value of this
     * field, casted to a {@code long} by first casting it to {@link Number} and
     * then invoking {@link Number#longValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToLongNullable asLong() {
        return mapToLongIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.longValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type long, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToFloatNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToFloatNullable
    mapToFloatIfPresent(ToFloatFunction mapper) {
        return new FieldToFloatImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToFloatNullable} expression that has the value of this
     * field, casted to a {@code float} by first casting it to {@link Number}
     * and then invoking {@link Number#floatValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToFloatNullable asFloat() {
        return mapToFloatIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.floatValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type float, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToDoubleNullable} expression that has the value
     * returned by the specified mapper function if the value for this field is
     * not {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    @Override
    default ToDoubleNullable
    mapToDoubleIfPresent(ToDoubleFunction mapper) {
        return new FieldToDoubleImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToDoubleNullable} expression that has the value of this
     * field, casted to a {@code double} by first casting it to {@link Number}
     * and then invoking {@link Number#doubleValue()}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToDoubleNullable asDouble() {
        return mapToDoubleIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return number.doubleValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type double, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToCharNullable} expression that has the value returned
     * by the specified mapper function if the value for this field is not
     * {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToCharNullable
    mapToCharIfPresent(ToCharFunction mapper) {
        return new FieldToCharImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToCharNullable} expression that has the value of this
     * field, casted to a {@code char} by first casting it to {@link Number} and
     * then invoking {@link Number#intValue()} and casting it to a {@code char}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToCharNullable asChar() {
        return mapToCharIfPresent(val -> {
            if (val instanceof Number) {
                final Number number = (Number) val;
                return (char) number.intValue();
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type char, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToBooleanNullable} expression that has the value
     * returned by the specified mapper function if the value for this field is
     * not {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToBooleanNullable
    mapToBooleanIfPresent(ToBooleanFunction mapper) {
        return new FieldToBooleanImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToBooleanNullable} expression that has the value of
     * this field, casted to a {@code boolean} by first casting it to
     * {@link Boolean}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToBooleanNullable asBoolean() {
        return mapToBooleanIfPresent(val -> {
            if (val instanceof Boolean) {
                return (Boolean) val;
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type boolean, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToStringNullable} expression that has the value
     * returned by the specified mapper function if the value for this field is
     * not {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToStringNullable
    mapToStringIfPresent(Function mapper) {
        return new FieldToStringImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToBooleanNullable} expression that has the value of
     * this field, casted to a {@code boolean} by first casting it to
     * {@link Boolean}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToStringNullable asString() {
        return mapToStringIfPresent(val -> {
            if (val instanceof String) {
                return (String) val;
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type String, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToStringNullable} expression that has the value
     * returned by the specified mapper function if the value for this field is
     * not {@code null}, and otherwise {@code null}.
     *
     * @param mapper  the mapper operation
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToBigDecimalNullable
    mapToBigDecimalIfPresent(Function mapper) {
        return new FieldToBigDecimalImpl<>(this, mapper);
    }

    /**
     * Returns an {@link ToBigDecimalNullable} expression that has the value of
     * this field but casted to a {@link BigDecimal}.
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default ToBigDecimalNullable asBigDecimal() {
        return mapToBigDecimalIfPresent(val -> {
            if (val instanceof BigDecimal) {
                return (BigDecimal) val;
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type BigDecimal, but it was not.",
                identifier()
            ));
        });
    }

    /**
     * Returns an {@link ToEnumNullable} expression that has the value
     * returned by the specified mapper function if the value for this field is
     * not {@code null}, and otherwise {@code null}.
     *
     * @param         the enum type
     * @param mapper     the mapper operation
     * @param enumClass  class of the enum to map to
     *
     * @return  expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default > ToEnumNullable
    mapToEnumIfPresent(Function mapper, Class enumClass) {
        return new FieldToEnumImpl<>(this, mapper, enumClass);
    }

    /**
     * Returns an {@link ToBooleanNullable} expression that has the value of
     * this field, casted to a particular {@code enum} class.
     *
     * @param         the enum type
     * @param enumClass  class of the enum to map to
     *
     * @return    expression for this value after mapper has been applied
     *
     * @since 3.1.0
     */
    default > ToEnumNullable asEnum(Class enumClass) {
        return mapToEnumIfPresent(val -> {
            if (enumClass.isInstance(val)) {
                return enumClass.cast(val);
            } else throw new SpeedmentFieldException(format(
                "Expected field %s to be of type %s, but it was not.",
                enumClass.getName(), identifier()
            ));
        }, enumClass);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy