public static enum ServiceRegistrationManagerImpl.State extends Enum<ServiceRegistrationManagerImpl.State>
Enum Constant and Description |
---|
PENDING
the service profile is registered for validation.
|
REGISTERED
the service profile is fully registered.
|
UNKNOWN
service profile is either registered or registered and we have to check out if the profile already exists.
|
UNREGISTERED
service profile is not yet registered or the registration disappeared.
|
Modifier and Type | Method and Description |
---|---|
static ServiceRegistrationManagerImpl.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceRegistrationManagerImpl.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceRegistrationManagerImpl.State UNKNOWN
public static final ServiceRegistrationManagerImpl.State UNREGISTERED
public static final ServiceRegistrationManagerImpl.State PENDING
public static final ServiceRegistrationManagerImpl.State REGISTERED
public static ServiceRegistrationManagerImpl.State[] values()
for (ServiceRegistrationManagerImpl.State c : ServiceRegistrationManagerImpl.State.values()) System.out.println(c);
public static ServiceRegistrationManagerImpl.State 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 © 2019. All rights reserved.