
org.jenkinsci.constant_pool_scanner.ClassConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of constant-pool-scanner Show documentation
Show all versions of constant-pool-scanner Show documentation
Simple utility to scan Java bytecode for class references in the constant pool.
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