io.github.jeddict.jpa.spec.extend.Constructor.java Source code

Java tutorial

Introduction

Here is the source code for io.github.jeddict.jpa.spec.extend.Constructor.java

Source

/**
 * Copyright 2013-2018 the original author or authors from the Jeddict project (https://jeddict.github.io/).
 *
 * 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 io.github.jeddict.jpa.spec.extend;

import static io.github.jeddict.jcode.util.JavaIdentifiers.unqualify;
import java.util.Objects;
import static java.util.stream.Collectors.joining;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import org.apache.commons.lang.StringUtils;

/**
 *
 * @author Gaurav Gupta
 */
@XmlAccessorType(XmlAccessType.FIELD)
public class Constructor extends ClassMembers {

    @XmlAttribute(name = "am")
    private AccessModifierType accessModifier;

    public static final Constructor getNoArgsInstance() {
        Constructor constructor = new Constructor();
        constructor.setAccessModifier(AccessModifierType.PUBLIC);
        return constructor;
    }

    public boolean isNoArgs() {
        return getAttributes().isEmpty();
    }

    /**
     * @return the accessModifier
     */
    public AccessModifierType getAccessModifier() {
        if (accessModifier == null) {
            return AccessModifierType.PUBLIC;
        }
        return accessModifier;
    }

    /**
     * @param accessModifier the accessModifier to set
     */
    public void setAccessModifier(AccessModifierType accessModifier) {
        this.accessModifier = accessModifier;
    }

    @Override
    public int hashCode() {
        return getAttributes().size();
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final Constructor other = (Constructor) obj;
        if (this.getAttributes().size() != other.getAttributes().size()) {
            return false;
        }
        for (int i = 0; i < this.getAttributes().size(); i++) {
            if (!Objects.equals(this.getAttributes().get(i).getDataTypeLabel(),
                    other.getAttributes().get(i).getDataTypeLabel())) {
                return false;
            }
        }
        return true;
    }

    public static final String NO_ARG = "no-arg constructor";

    public String getSignature() {
        String sign = getAttributes().stream().map(a -> unqualify(a.getDataTypeLabel())).collect(joining(", "));
        if (StringUtils.isBlank(sign)) {
            sign = "";
        }
        return sign;
    }

    @Override
    public String toString() {
        String sign = getAttributes().stream().map(a -> unqualify(a.getDataTypeLabel()) + " " + a.getName())
                .collect(joining(", "));
        if (StringUtils.isBlank(sign)) {
            sign = NO_ARG;
        }
        return sign;
    }

}