public static enum LoadedTypeInitializer.NoOp extends Enum<LoadedTypeInitializer.NoOp> implements LoadedTypeInitializer
LoadedTypeInitializer.Compound, LoadedTypeInitializer.ForStaticField, LoadedTypeInitializer.NoOp| Enum Constant and Description | 
|---|
| INSTANCEThe singleton instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isAlive()Indicates if this initializer is alive and needs to be invoked. | 
| void | onLoad(Class<?> type)Callback that is invoked on the creation of an instrumented type. | 
| String | toString() | 
| static LoadedTypeInitializer.NoOp | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LoadedTypeInitializer.NoOp[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LoadedTypeInitializer.NoOp INSTANCE
public static LoadedTypeInitializer.NoOp[] values()
for (LoadedTypeInitializer.NoOp c : LoadedTypeInitializer.NoOp.values()) System.out.println(c);
public static LoadedTypeInitializer.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 void onLoad(Class<?> type)
LoadedTypeInitializeronLoad in interface LoadedTypeInitializertype - The manifestation of the instrumented type.public boolean isAlive()
LoadedTypeInitializerisAlive in interface LoadedTypeInitializertrue if this initializer is alive.public String toString()
toString in class Enum<LoadedTypeInitializer.NoOp>Copyright © 2014–2016. All rights reserved.