Package aQute.bnd.osgi
Enum Verifier.ActivatorErrorType
- java.lang.Object
-
- java.lang.Enum<Verifier.ActivatorErrorType>
-
- aQute.bnd.osgi.Verifier.ActivatorErrorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Verifier.ActivatorErrorType>
- Enclosing class:
- Verifier
public static enum Verifier.ActivatorErrorType extends java.lang.Enum<Verifier.ActivatorErrorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT_PACKAGE
INVALID_TYPE_NAME
IS_ABSTRACT
IS_IMPORTED
IS_INTERFACE
MULTIPLE_TYPES
NO_RESULT_FROM_MACRO
NO_SUITABLE_CONSTRUCTOR
NOT_ACCESSIBLE
NOT_AN_ACTIVATOR
NOT_PUBLIC
NOT_SET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Verifier.ActivatorErrorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Verifier.ActivatorErrorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
NOT_SET
public static final Verifier.ActivatorErrorType NOT_SET
-
NO_RESULT_FROM_MACRO
public static final Verifier.ActivatorErrorType NO_RESULT_FROM_MACRO
-
MULTIPLE_TYPES
public static final Verifier.ActivatorErrorType MULTIPLE_TYPES
-
INVALID_TYPE_NAME
public static final Verifier.ActivatorErrorType INVALID_TYPE_NAME
-
-
Method Detail
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-