aQute.lib.osgi
public static class Clazz.QUERY extends Enum<Clazz.QUERY>
Field Summary | |
---|---|
static Clazz.QUERY | ABSTRACT |
static Clazz.QUERY | ANNOTATION |
static Clazz.QUERY | ANY |
static Clazz.QUERY | CLASSANNOTATIONS |
static Clazz.QUERY | CONCRETE |
static Clazz.QUERY | EXTENDS |
static Clazz.QUERY | IMPLEMENTS |
static Clazz.QUERY | IMPORTS |
static Clazz.QUERY | NAMED |
static Clazz.QUERY | PUBLIC |
static Clazz.QUERY | RUNTIMEANNOTATIONS |
static List<Clazz.QUERY> | VALUES An immutable list containing the values comprising this enum class in the order they're declared. |
static Clazz.QUERY | VERSION |
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.QUERY | valueOf(String name) Static factory to return the enum constant pertaining to the given string name. |
for(QUERY c : QUERY.VALUES) System.out.println(c);
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.
Throws: IllegalArgumentException if this enum class has no constant with the specified name.