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

cn.zenliu.units.processor.util.SpecialMapping Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
/*
 * Source of units
 * Copyright (C) 2023.  Zen.Liu
 *
 * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0"
 *
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2.
 * This program 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 General Public License for more details.
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Class Path Exception
 * Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.
 *  As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
 */

package cn.zenliu.units.processor.util;

import cn.zenliu.units.processor.unit.ProcUtil;

import javax.lang.model.element.*;
import javax.lang.model.type.TypeMirror;
import java.lang.annotation.Annotation;
import java.util.List;
import java.util.Set;
import java.util.function.BiFunction;

/**
 * only returns by {@link ProcUtil#project(ExecutableElement, ExecutableElement, boolean, BiFunction)} and its mappable parameter.
 */
@SuppressWarnings("unused")
public final class SpecialMapping> implements ExecutableElement {
    final Object payload;

    public Object payload() {
        return payload;
    }

    @SuppressWarnings("unchecked")
    public  T param() {
        return (T) payload;
    }

    public C code() {
        return code;
    }

    final C code;

    public static > SpecialMapping of(Object v, C code) {
        return new SpecialMapping<>(v, code);
    }

    private SpecialMapping(Object payload, C code) {

        this.payload = payload;
        this.code = code;
    }

    @Override
    public TypeMirror asType() {
        return null;
    }

    @Override
    public ElementKind getKind() {
        return null;
    }

    @Override
    public Set getModifiers() {
        return null;
    }

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

    @Override
    public TypeMirror getReturnType() {
        return null;
    }

    @Override
    public List getParameters() {
        return null;
    }

    @Override
    public TypeMirror getReceiverType() {
        return null;
    }

    @Override
    public boolean isVarArgs() {
        return false;
    }

    @Override
    public boolean isDefault() {
        return false;
    }

    @Override
    public List getThrownTypes() {
        return null;
    }

    @Override
    public AnnotationValue getDefaultValue() {
        return null;
    }

    @Override
    public Name getSimpleName() {
        return null;
    }

    @Override
    public Element getEnclosingElement() {
        return null;
    }

    @Override
    public List getEnclosedElements() {
        return null;
    }

    @Override
    public List getAnnotationMirrors() {
        return null;
    }

    @Override
    public  A getAnnotation(Class annotationType) {
        return null;
    }

    @Override
    public  A[] getAnnotationsByType(Class annotationType) {
        return null;
    }

    @Override
    public  R accept(ElementVisitor v, P p) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy