Interface AuxiliaryType.NamingStrategy
-
- All Known Implementing Classes:
AuxiliaryType.NamingStrategy.SuffixingRandom
- Enclosing interface:
- AuxiliaryType
public static interface AuxiliaryType.NamingStrategy
Representation of a naming strategy for an auxiliary type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
AuxiliaryType.NamingStrategy.SuffixingRandom
A naming strategy for an auxiliary type which returns the instrumented type's name with a fixed extension and a random number as a suffix.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
name(TypeDescription instrumentedType)
Names an auxiliary type.
-
-
-
Method Detail
-
name
java.lang.String name(TypeDescription instrumentedType)
Names an auxiliary type.- Parameters:
instrumentedType
- The instrumented type for which an auxiliary type is registered.- Returns:
- The fully qualified name for the given auxiliary type.
-
-