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

pascal.taie.language.generics.MethodGSignature Maven / Gradle / Ivy

The newest version!
/*
 * Tai-e: A Static Analysis Framework for Java
 *
 * Copyright (C) 2022 Tian Tan 
 * Copyright (C) 2022 Yue Li 
 *
 * This file is part of Tai-e.
 *
 * Tai-e is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tai-e is distributed in the hope that it will be useful,but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Tai-e. If not, see .
 */


package pascal.taie.language.generics;

import pascal.taie.util.Experimental;

import java.io.Serializable;
import java.util.List;
import java.util.StringJoiner;
import java.util.stream.Collectors;

/**
 * In 
 * JVM Spec. 4.7.9.1 MethodSignature,
 * a method signature encodes type information about a (possibly generic) method declaration.
 * It describes any type parameters of the method; the (possibly parameterized) types of
 * any formal parameters; the (possibly parameterized) return type, if any;
 * and the types of any exceptions declared in the method's throws clause.
 */
public final class MethodGSignature implements Serializable {

    private final List typeParams;

    private final List parameterSigs;

    private final TypeGSignature resultSignature;

    private final List throwsSigs;

    MethodGSignature(List typeParams,
                     List parameterSigs,
                     TypeGSignature resultSignature,
                     List throwsSigs) {
        this.typeParams = List.copyOf(typeParams);
        this.parameterSigs = List.copyOf(parameterSigs);
        this.resultSignature = resultSignature;
        this.throwsSigs = List.copyOf(throwsSigs);
    }

    @Experimental
    public List getTypeParams() {
        return typeParams;
    }

    @Experimental
    public List getParameterSigs() {
        return parameterSigs;
    }

    @Experimental
    public TypeGSignature getResultSignature() {
        return resultSignature;
    }

    @Experimental
    public List getThrowsSigs() {
        return throwsSigs;
    }

    @Override
    public String toString() {
        StringJoiner joiner = new StringJoiner(" ");
        if (!typeParams.isEmpty()) {
            joiner.add(typeParams.stream().map(TypeParameter::toString)
                    .collect(Collectors.joining(", ", "<", ">")));
        }
        joiner.add(resultSignature.toString());
        joiner.add(parameterSigs.stream().map(TypeGSignature::toString)
                .collect(Collectors.joining(", ", "(", ")")));
        if (!throwsSigs.isEmpty()) {
            joiner.add("throws");
            joiner.add(throwsSigs.stream().map(TypeGSignature::toString)
                    .collect(java.util.stream.Collectors.joining(", ")));
        }
        return joiner.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy