java.io.Serializable, java.lang.Comparable<ClassRealmRequest.RealmType>public static enum ClassRealmRequest.RealmType extends java.lang.Enum<ClassRealmRequest.RealmType>
| Enum Constant | 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 | Description |
|---|---|---|
static ClassRealmRequest.RealmType |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null