public enum AccessClientStatus extends java.lang.Enum<AccessClientStatus>
| Enum Constant and Description |
|---|
ACTIVE
The access client is active, and can operate normally
|
BLOCKED
The access client is blocked and cannot be used until it is unblocked
|
REMOVED
The access client was removed, but had transactions, so couldn't be physically removed
|
UNASSIGNED
The access client is unassigned (disconnected) from a physical application
|
| Modifier and Type | Method and Description |
|---|---|
static AccessClientStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessClientStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessClientStatus UNASSIGNED
public static final AccessClientStatus ACTIVE
public static final AccessClientStatus BLOCKED
public static final AccessClientStatus REMOVED
public static AccessClientStatus[] values()
for (AccessClientStatus c : AccessClientStatus.values()) System.out.println(c);
public static AccessClientStatus 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