aQute.bnd.osgi
Enum Verifier.ActivatorErrorType
java.lang.Object
java.lang.Enum<Verifier.ActivatorErrorType>
aQute.bnd.osgi.Verifier.ActivatorErrorType
- All Implemented Interfaces:
- Serializable, Comparable<Verifier.ActivatorErrorType>
- Enclosing class:
- Verifier
public static enum Verifier.ActivatorErrorType
- extends Enum<Verifier.ActivatorErrorType>
IS_INTERFACE
public static final Verifier.ActivatorErrorType IS_INTERFACE
IS_ABSTRACT
public static final Verifier.ActivatorErrorType IS_ABSTRACT
NOT_PUBLIC
public static final Verifier.ActivatorErrorType NOT_PUBLIC
NO_SUITABLE_CONSTRUCTOR
public static final Verifier.ActivatorErrorType NO_SUITABLE_CONSTRUCTOR
NOT_AN_ACTIVATOR
public static final Verifier.ActivatorErrorType NOT_AN_ACTIVATOR
DEFAULT_PACKAGE
public static final Verifier.ActivatorErrorType DEFAULT_PACKAGE
NOT_ACCESSIBLE
public static final Verifier.ActivatorErrorType NOT_ACCESSIBLE
IS_IMPORTED
public static final Verifier.ActivatorErrorType IS_IMPORTED
values
public static Verifier.ActivatorErrorType[] 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 (Verifier.ActivatorErrorType c : Verifier.ActivatorErrorType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Verifier.ActivatorErrorType 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 © 2014 aQute SARL. All rights reserved.