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

lombok.core.ClassLiteral Maven / Gradle / Ivy

Go to download

Spice up your java: Automatic Resource Management, automatic generation of getters, setters, equals, hashCode and toString, and more!

There is a newer version: 1.18.12
Show newest version
package lombok.core;

public class ClassLiteral {
    private final String className;

    public ClassLiteral(String className) {
        this.className = className;
    }

    public String getClassName() {
        return className;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy