aQute.lib.osgi

Class Clazz.QUERY

public static class Clazz.QUERY extends Enum<Clazz.QUERY>

Field Summary
static Clazz.QUERYABSTRACT
static Clazz.QUERYANNOTATION
static Clazz.QUERYANY
static Clazz.QUERYCLASSANNOTATIONS
static Clazz.QUERYCONCRETE
static Clazz.QUERYEXTENDS
static Clazz.QUERYIMPLEMENTS
static Clazz.QUERYIMPORTS
static Clazz.QUERYNAMED
static Clazz.QUERYPUBLIC
static Clazz.QUERYRUNTIMEANNOTATIONS
static List<Clazz.QUERY>VALUES
An immutable list containing the values comprising this enum class in the order they're declared.
static Clazz.QUERYVERSION
Method Summary
List<Clazz.QUERY>family()
Returns an immutable list containing the values comprising this enum class in the order they're declared.
static Clazz.QUERYvalueOf(String name)
Static factory to return the enum constant pertaining to the given string name.

Field Detail

ABSTRACT

public static final Clazz.QUERY ABSTRACT

ANNOTATION

public static final Clazz.QUERY ANNOTATION

ANY

public static final Clazz.QUERY ANY

CLASSANNOTATIONS

public static final Clazz.QUERY CLASSANNOTATIONS

CONCRETE

public static final Clazz.QUERY CONCRETE

EXTENDS

public static final Clazz.QUERY EXTENDS

IMPLEMENTS

public static final Clazz.QUERY IMPLEMENTS

IMPORTS

public static final Clazz.QUERY IMPORTS

NAMED

public static final Clazz.QUERY NAMED

PUBLIC

public static final Clazz.QUERY PUBLIC

RUNTIMEANNOTATIONS

public static final Clazz.QUERY RUNTIMEANNOTATIONS

VALUES

public static final List<Clazz.QUERY> VALUES
An immutable list containing the values comprising this enum class in the order they're declared. This field may be used to iterate over the constants as follows:
for(QUERY c : QUERY.VALUES)
    System.out.println(c);

VERSION

public static final Clazz.QUERY VERSION

Method Detail

family

public final List<Clazz.QUERY> family()
Returns an immutable list containing the values comprising this enum class in the order they're declared. This instance method simply returns VALUES. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES.

Returns: an immutable list containing the values comprising this enum class, in the order they're declared.

valueOf

public static final Clazz.QUERY valueOf(String name)
Static factory to return the enum constant pertaining to the given string name. The string must match exactly an identifier used to declare an enum constant in this type.

Throws: IllegalArgumentException if this enum class has no constant with the specified name.