org.sonatype.aether
Enum RepositoryEvent.EventType
java.lang.Object
java.lang.Enum<RepositoryEvent.EventType>
org.sonatype.aether.RepositoryEvent.EventType
- All Implemented Interfaces:
- Serializable, Comparable<RepositoryEvent.EventType>
- Enclosing interface:
- RepositoryEvent
public static enum RepositoryEvent.EventType
- extends Enum<RepositoryEvent.EventType>
The type of the repository event.
ARTIFACT_DESCRIPTOR_INVALID
public static final RepositoryEvent.EventType ARTIFACT_DESCRIPTOR_INVALID
ARTIFACT_DESCRIPTOR_MISSING
public static final RepositoryEvent.EventType ARTIFACT_DESCRIPTOR_MISSING
METADATA_INVALID
public static final RepositoryEvent.EventType METADATA_INVALID
ARTIFACT_RESOLVING
public static final RepositoryEvent.EventType ARTIFACT_RESOLVING
ARTIFACT_RESOLVED
public static final RepositoryEvent.EventType ARTIFACT_RESOLVED
METADATA_RESOLVING
public static final RepositoryEvent.EventType METADATA_RESOLVING
METADATA_RESOLVED
public static final RepositoryEvent.EventType METADATA_RESOLVED
ARTIFACT_DOWNLOADING
public static final RepositoryEvent.EventType ARTIFACT_DOWNLOADING
ARTIFACT_DOWNLOADED
public static final RepositoryEvent.EventType ARTIFACT_DOWNLOADED
METADATA_DOWNLOADING
public static final RepositoryEvent.EventType METADATA_DOWNLOADING
METADATA_DOWNLOADED
public static final RepositoryEvent.EventType METADATA_DOWNLOADED
ARTIFACT_INSTALLING
public static final RepositoryEvent.EventType ARTIFACT_INSTALLING
ARTIFACT_INSTALLED
public static final RepositoryEvent.EventType ARTIFACT_INSTALLED
METADATA_INSTALLING
public static final RepositoryEvent.EventType METADATA_INSTALLING
METADATA_INSTALLED
public static final RepositoryEvent.EventType METADATA_INSTALLED
ARTIFACT_DEPLOYING
public static final RepositoryEvent.EventType ARTIFACT_DEPLOYING
ARTIFACT_DEPLOYED
public static final RepositoryEvent.EventType ARTIFACT_DEPLOYED
METADATA_DEPLOYING
public static final RepositoryEvent.EventType METADATA_DEPLOYING
METADATA_DEPLOYED
public static final RepositoryEvent.EventType METADATA_DEPLOYED
values
public static RepositoryEvent.EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (RepositoryEvent.EventType c : RepositoryEvent.EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static RepositoryEvent.EventType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2010-2013. All Rights Reserved.