public static enum Requirement.Cardinality extends java.lang.Enum<Requirement.Cardinality>
| Enum Constant and Description |
|---|
MULTIPLE
Indicates if the requirement can be wired multiple times.
|
SINGLE
Indicates if the requirement can only be wired a single time.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Requirement.Cardinality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Requirement.Cardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Requirement.Cardinality SINGLE
public static final Requirement.Cardinality MULTIPLE
public static Requirement.Cardinality[] values()
for (Requirement.Cardinality c : Requirement.Cardinality.values()) System.out.println(c);
public static Requirement.Cardinality valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Requirement.Cardinality>Copyright © OSGi Alliance (2000, 2018). All Rights Reserved. Licensed under the OSGi Specification License, Version 2.0