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

org.jenkinsci.constant_pool_scanner.ClassConstant Maven / Gradle / Ivy

The newest version!
package org.jenkinsci.constant_pool_scanner;

/**
 * Constant that refers to a class name.
 *
 * @author Kohsuke Kawaguchi
 */
public final class ClassConstant {
    private Utf8Constant value;

    /**
     * UTF-8 constant that holds the class' internal name.
     */
    public Utf8Constant getUTF8() {
        return value;
    }

    /**
     * Gets the actual class name.
     */
    public String get() {
        return getUTF8().get();
    }

    ClassConstant set(Utf8Constant v) {
        this.value = v;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy