public enum TypeAutoNameStrategy extends Enum<TypeAutoNameStrategy>
| Enum Constant and Description |
|---|
Default |
Full |
MergeInnerClass |
| Modifier and Type | Method and Description |
|---|---|
static TypeAutoNameStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeAutoNameStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeAutoNameStrategy Default
public static final TypeAutoNameStrategy MergeInnerClass
public static final TypeAutoNameStrategy Full
public static TypeAutoNameStrategy[] values()
for (TypeAutoNameStrategy c : TypeAutoNameStrategy.values()) System.out.println(c);
public static TypeAutoNameStrategy 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 © 2018–2021. All rights reserved.