Package aQute.bnd.osgi
Enum Clazz.QUERY
- java.lang.Object
-
- java.lang.Enum<Clazz.QUERY>
-
- aQute.bnd.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
Enum Constants Enum Constant Description ABSTRACT
ANNOTATED
ANY
CLASSANNOTATIONS
CONCRETE
DEFAULT_CONSTRUCTOR
EXTENDS
IMPLEMENTS
IMPORTS
NAMED
PUBLIC
RUNTIMEANNOTATIONS
VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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
-
ANNOTATED
public static final Clazz.QUERY ANNOTATED
-
RUNTIMEANNOTATIONS
public static final Clazz.QUERY RUNTIMEANNOTATIONS
-
CLASSANNOTATIONS
public static final Clazz.QUERY CLASSANNOTATIONS
-
DEFAULT_CONSTRUCTOR
public static final Clazz.QUERY DEFAULT_CONSTRUCTOR
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-