aQute.lib.osgi
Enum Clazz.QUERY

java.lang.Object
  extended by java.lang.Enum<Clazz.QUERY>
      extended by aQute.lib.osgi.Clazz.QUERY
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Clazz.QUERY>
Enclosing class:
Clazz

public static enum Clazz.QUERY
extends java.lang.Enum<Clazz.QUERY>


Enum Constant Summary
ABSTRACT
           
ANNOTATION
           
ANY
           
CLASSANNOTATIONS
           
CONCRETE
           
EXTENDS
           
IMPLEMENTS
           
IMPORTS
           
NAMED
           
PUBLIC
           
RUNTIMEANNOTATIONS
           
VERSION
           
 
Method Summary
static Clazz.QUERY valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Clazz.QUERY[] 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

IMPLEMENTS

public static final Clazz.QUERY IMPLEMENTS

EXTENDS

public static final Clazz.QUERY EXTENDS

IMPORTS

public static final Clazz.QUERY IMPORTS

NAMED

public static final Clazz.QUERY NAMED

ANY

public static final Clazz.QUERY ANY

VERSION

public static final Clazz.QUERY VERSION

CONCRETE

public static final Clazz.QUERY CONCRETE

ABSTRACT

public static final Clazz.QUERY ABSTRACT

PUBLIC

public static final Clazz.QUERY PUBLIC

ANNOTATION

public static final Clazz.QUERY ANNOTATION

RUNTIMEANNOTATIONS

public static final Clazz.QUERY RUNTIMEANNOTATIONS

CLASSANNOTATIONS

public static final Clazz.QUERY CLASSANNOTATIONS
Method Detail

values

public static Clazz.QUERY[] 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 (Clazz.QUERY c : Clazz.QUERY.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Clazz.QUERY 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 name
java.lang.NullPointerException - if the argument is null