public static enum ClassRealmRequest.RealmType extends Enum<ClassRealmRequest.RealmType>
Enum Constant and Description |
---|
Core
The class realm for the public API of the Maven core.
|
Extension
A class realm for a build extension.
|
Plugin
A class realm for a plugin.
|
Project
A class realm for a project to aggregates its build extensions.
|
Modifier and Type | Method and Description |
---|---|
static ClassRealmRequest.RealmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassRealmRequest.RealmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassRealmRequest.RealmType Core
public static final ClassRealmRequest.RealmType Project
public static final ClassRealmRequest.RealmType Extension
public static final ClassRealmRequest.RealmType Plugin
public static ClassRealmRequest.RealmType[] values()
for (ClassRealmRequest.RealmType c : ClassRealmRequest.RealmType.values()) System.out.println(c);
public static ClassRealmRequest.RealmType 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–2015 The Apache Software Foundation. All rights reserved.