public enum Availability extends java.lang.Enum<Availability>
| Enum Constant and Description |
|---|
MANDATORY
Indicates that a matching service is required at all times.
|
OPTIONAL
Indicates that a matching service is not required to be present.
|
| Modifier and Type | Method and Description |
|---|---|
static Availability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Availability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Availability MANDATORY
public static final Availability OPTIONAL
public static Availability[] values()
for (Availability c : Availability.values()) System.out.println(c);
public static Availability 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 null