public static enum CACAction.ActionType extends java.lang.Enum<CACAction.ActionType>
Enum Constant and Description |
---|
ACCEPT_REQUEST
Accept a connection request.
|
ADD_CONNECTION_ROUTE
Add a connection route to an existing connection.
|
BLOCK_REQUEST
Block a connection request.
|
MODIFY_CONNECTION_ROUTE
Modify an existing connection route.
|
RELEASE_CONNECTION
Release an existing connection.
|
REMOVE_CONNECTION_ROUTE
Remove an existing connection route.
|
Modifier and Type | Method and Description |
---|---|
static CACAction.ActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CACAction.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CACAction.ActionType ACCEPT_REQUEST
public static final CACAction.ActionType BLOCK_REQUEST
public static final CACAction.ActionType ADD_CONNECTION_ROUTE
public static final CACAction.ActionType MODIFY_CONNECTION_ROUTE
public static final CACAction.ActionType REMOVE_CONNECTION_ROUTE
public static final CACAction.ActionType RELEASE_CONNECTION
Release an existing connection.
Important: This action doesn't trigger a 'connection release' event
public static CACAction.ActionType[] values()
for (CACAction.ActionType c : CACAction.ActionType.values()) System.out.println(c);
public static CACAction.ActionType 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