public static enum ClassFileLocator.NoOp extends Enum<ClassFileLocator.NoOp> implements ClassFileLocator
ClassFileLocator.AgentBased, ClassFileLocator.Compound, ClassFileLocator.ForClassLoader, ClassFileLocator.ForFolder, ClassFileLocator.ForJarFile, ClassFileLocator.NoOp, ClassFileLocator.Resolution, ClassFileLocator.Simple| Enum Constant and Description | 
|---|
| INSTANCEThe singleton instance. | 
CLASS_FILE_EXTENSION| Modifier and Type | Method and Description | 
|---|---|
| ClassFileLocator.Resolution | locate(String typeName)Locates the class file for a given type and returns the binary data of the class file. | 
| String | toString() | 
| static ClassFileLocator.NoOp | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ClassFileLocator.NoOp[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ClassFileLocator.NoOp INSTANCE
public static ClassFileLocator.NoOp[] values()
for (ClassFileLocator.NoOp c : ClassFileLocator.NoOp.values()) System.out.println(c);
public static ClassFileLocator.NoOp valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic ClassFileLocator.Resolution locate(String typeName)
ClassFileLocatorlocate in interface ClassFileLocatortypeName - The name of the type to locate a class file representation for.public String toString()
toString in class Enum<ClassFileLocator.NoOp>Copyright © 2014–2016. All rights reserved.