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

com.moon.mapping.processing.CanonicalNameable Maven / Gradle / Ivy

package com.moon.mapping.processing;

/**
 * @author moonsky
 */
@FunctionalInterface
interface CanonicalNameable {

    /**
     * String name
     *
     * @return
     */
    String getCanonicalName();

    /**
     * 简单名称
     *
     * @return
     */
    default String getSimpleName() {
        return ElementUtils.getSimpleName(getCanonicalName());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy