public enum DumperKind extends Enum<DumperKind>
| Enum Constant and Description |
|---|
EclipseProject |
JavaMain |
MavenProject |
| Modifier and Type | Method and Description |
|---|---|
static DumperKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DumperKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DumperKind JavaMain
public static final DumperKind EclipseProject
public static final DumperKind MavenProject
public static DumperKind[] values()
for (DumperKind c : DumperKind.values()) System.out.println(c);
public static DumperKind 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 © 2017. All Rights Reserved.