public enum RxPEPState extends Enum<RxPEPState>
| Enum Constant and Description |
|---|
REGISTRATION_DONE_SUCCESSFULLY
PEP is already registered at PMP.
|
REGISTRATION_FAILED
PEP failed to register at PMP.
|
REGISTRATION_NOT_STARTED
Registration to PMP has not been started yet.
|
REGISTRATION_UNDER_PROCESS
Registration to PMP is being processed.
|
| Modifier and Type | Method and Description |
|---|---|
static RxPEPState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RxPEPState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RxPEPState REGISTRATION_DONE_SUCCESSFULLY
public static final RxPEPState REGISTRATION_FAILED
public static final RxPEPState REGISTRATION_NOT_STARTED
public static final RxPEPState REGISTRATION_UNDER_PROCESS
public static RxPEPState[] values()
for (RxPEPState c : RxPEPState.values()) System.out.println(c);
public static RxPEPState 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 © 2018. All rights reserved.