public static enum CordConfigEvent.Type extends Enum<CordConfigEvent.Type>
| Enum Constant and Description |
|---|
ACCESS_AGENT_ADDED
Indicates a new access agent has been added.
|
ACCESS_AGENT_REMOVED
Indicates an access agent has been removed.
|
ACCESS_AGENT_UPDATED
Indicates an access agent has been updated.
|
ACCESS_DEVICE_ADDED
Indicates a new access device has been added.
|
ACCESS_DEVICE_REMOVED
Indicates an access device has been removed.
|
ACCESS_DEVICE_UPDATED
Indicates an access device has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
static CordConfigEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CordConfigEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CordConfigEvent.Type ACCESS_AGENT_ADDED
public static final CordConfigEvent.Type ACCESS_AGENT_UPDATED
public static final CordConfigEvent.Type ACCESS_AGENT_REMOVED
public static final CordConfigEvent.Type ACCESS_DEVICE_ADDED
public static final CordConfigEvent.Type ACCESS_DEVICE_UPDATED
public static final CordConfigEvent.Type ACCESS_DEVICE_REMOVED
public static CordConfigEvent.Type[] values()
for (CordConfigEvent.Type c : CordConfigEvent.Type.values()) System.out.println(c);
public static CordConfigEvent.Type 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 © 2016. All rights reserved.