public static class NamingStrategy.SuffixingRandom extends Object implements NamingStrategy
$
sign is included into the name to improve readability. As an exception,
types that subclass classes from the java.**
packages are prefixed with a given package. This is
necessary as it is illegal to define non-bootstrap classes in this name space. The same strategy is applied
when subclassing a signed type which is equally illegal.NamingStrategy.Fixed, NamingStrategy.PrefixingRandom, NamingStrategy.SuffixingRandom, NamingStrategy.UnnamedType
Constructor and Description |
---|
SuffixingRandom(String suffix)
Creates an immutable naming strategy with a given suffix but moves types that subclass types within
the
java.lang package into ByteBuddy's package namespace. |
SuffixingRandom(String suffix,
String javaLangPackagePrefix)
Creates an immutable naming strategy with a given suffix but moves types that subclass types within
the
java.lang package into a given namespace. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object other) |
int |
hashCode() |
String |
name(NamingStrategy.UnnamedType unnamedType)
Generates a fully qualified name for a Java type.
|
String |
toString() |
public SuffixingRandom(String suffix)
java.lang
package into ByteBuddy's package namespace.suffix
- The suffix for the generated class.public SuffixingRandom(String suffix, String javaLangPackagePrefix)
java.lang
package into a given namespace.suffix
- The suffix for the generated class.javaLangPackagePrefix
- The fallback namespace for type's that subclass types within the
java.lang
namespace.public String name(NamingStrategy.UnnamedType unnamedType)
NamingStrategy
java.lang
package since such types cannot be loaded using a normal class loader. Also, the name should not yet be taken
by another type since this would cause conflicts in the name space. Therefore, it is recommendable to include
a random sequence within the name.name
in interface NamingStrategy
unnamedType
- An unnamed type that is to be named.Copyright © 2014. All rights reserved.