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

com.speedment.common.codegen.internal.model.value.AnonymousValueImpl 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.common.codegen.internal.model.value;

import com.speedment.common.codegen.internal.util.Copier;
import com.speedment.common.codegen.model.ClassOrInterface;
import com.speedment.common.codegen.model.Field;
import com.speedment.common.codegen.model.Import;
import com.speedment.common.codegen.model.Initializer;
import com.speedment.common.codegen.model.Method;
import com.speedment.common.codegen.model.Value;
import com.speedment.common.codegen.model.trait.HasCopy;
import com.speedment.common.codegen.model.value.AnonymousValue;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;

/**
 * Default implementation of the {@link AnonymousValue} interface.
 *
 * @author Emil Forslund
 * @since  2.4.6
 */
public final class AnonymousValueImpl
implements AnonymousValue {

    private final List> args;
    private final List imports;
    private final List typeParams;
    private final List fields;
    private final List methods;
    private final List initializers;
    private final List> innerClasses;
    private Type value;

    public AnonymousValueImpl() {
        this.args         = new ArrayList<>();
        this.imports      = new ArrayList<>();
        this.typeParams   = new ArrayList<>();
        this.fields       = new ArrayList<>();
        this.methods      = new ArrayList<>();
        this.initializers = new ArrayList<>();
        this.innerClasses = new ArrayList<>();
    }

    private AnonymousValueImpl(AnonymousValue prototype) {
        this.args             = Copier.copy(prototype.getValues(), HasCopy::copy);
        this.imports          = Copier.copy(prototype.getImports());
        this.typeParams       = new ArrayList<>(prototype.getTypeParameters());
        this.fields           = Copier.copy(prototype.getFields());
        this.methods          = Copier.copy(prototype.getMethods());
        this.initializers     = Copier.copy(prototype.getInitializers());
        this.innerClasses     = Copier.copy(prototype.getClasses(), t -> t.copy());
        this.value            = prototype.getValue();
    }

    @Override
    public Type getValue() {
        return value;
    }

    @Override
    public List> getValues() {
        return args;
    }

    @Override
    public List getImports() {
        return imports;
    }

    @Override
    public List getTypeParameters() {
        return typeParams;
    }

    @Override
    public List getFields() {
        return fields;
    }

    @Override
    public List getMethods() {
        return methods;
    }

    @Override
    public List getInitializers() {
        return initializers;
    }

    @Override
    public List> getClasses() {
        return innerClasses;
    }

    @Override
    public AnonymousValue setValue(Type value) {
        this.value = value;
        return this;
    }

    @Override
    public AnonymousValue copy() {
        return new AnonymousValueImpl(this);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof AnonymousValue)) return false;

        AnonymousValue that = (AnonymousValue) o;

        if (args != null ? !args.equals(that.getValue()) : that.getValue() != null)
            return false;
        if (!typeParams.equals(that.getTypeParameters())) return false;
        if (!getFields().equals(that.getFields())) return false;
        if (!getMethods().equals(that.getMethods())) return false;
        if (!getInitializers().equals(that.getInitializers())) return false;
        return innerClasses.equals(that.getClasses());
    }

    @Override
    public int hashCode() {
        int result = args != null ? args.hashCode() : 0;
        result = 31 * result + typeParams.hashCode();
        result = 31 * result + getFields().hashCode();
        result = 31 * result + getMethods().hashCode();
        result = 31 * result + getInitializers().hashCode();
        result = 31 * result + innerClasses.hashCode();
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy