public enum Availability extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2006-2013. All Rights Reserved.