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