@Portable public enum MavenRepositorySource extends Enum<MavenRepositorySource>
Enum Constant and Description |
---|
DISTRIBUTION_MANAGEMENT |
LOCAL |
PROJECT |
SETTINGS |
Modifier and Type | Method and Description |
---|---|
static MavenRepositorySource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MavenRepositorySource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MavenRepositorySource LOCAL
public static final MavenRepositorySource PROJECT
public static final MavenRepositorySource SETTINGS
public static final MavenRepositorySource DISTRIBUTION_MANAGEMENT
public static MavenRepositorySource[] values()
for (MavenRepositorySource c : MavenRepositorySource.values()) System.out.println(c);
public static MavenRepositorySource 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 © 2012–2019 JBoss by Red Hat. All rights reserved.