aQute.bnd.osgi
Enum Verifier.ActivatorErrorType

java.lang.Object
  extended by java.lang.Enum<Verifier.ActivatorErrorType>
      extended by aQute.bnd.osgi.Verifier.ActivatorErrorType
All Implemented Interfaces:
Serializable, Comparable<Verifier.ActivatorErrorType>
Enclosing class:
Verifier

public static enum Verifier.ActivatorErrorType
extends Enum<Verifier.ActivatorErrorType>


Enum Constant Summary
DEFAULT_PACKAGE
           
IS_ABSTRACT
           
IS_IMPORTED
           
IS_INTERFACE
           
NO_SUITABLE_CONSTRUCTOR
           
NOT_ACCESSIBLE
           
NOT_AN_ACTIVATOR
           
NOT_PUBLIC
           
 
Method Summary
static Verifier.ActivatorErrorType valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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
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(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.