public static enum ToStringMethod.PrefixResolver.Default extends Enum<ToStringMethod.PrefixResolver.Default> implements ToStringMethod.PrefixResolver
ToStringMethod.PrefixResolver.Default, ToStringMethod.PrefixResolver.ForFixedValue
Enum Constant and Description |
---|
CANONICAL_CLASS_NAME
A prefix resolver for the instrumented type's fully qualified class name.
|
FULLY_QUALIFIED_CLASS_NAME
A prefix resolver for the instrumented type's fully qualified class name.
|
SIMPLE_CLASS_NAME
A prefix resolver for the instrumented type's simple class name.
|
Modifier and Type | Method and Description |
---|---|
static ToStringMethod.PrefixResolver.Default |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToStringMethod.PrefixResolver.Default[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
resolve
public static final ToStringMethod.PrefixResolver.Default FULLY_QUALIFIED_CLASS_NAME
public static final ToStringMethod.PrefixResolver.Default CANONICAL_CLASS_NAME
public static final ToStringMethod.PrefixResolver.Default SIMPLE_CLASS_NAME
public static ToStringMethod.PrefixResolver.Default[] values()
for (ToStringMethod.PrefixResolver.Default c : ToStringMethod.PrefixResolver.Default.values()) System.out.println(c);
public static ToStringMethod.PrefixResolver.Default 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 nullCopyright © 2014–2018. All rights reserved.