public enum NanoServiceCBType extends Enum<NanoServiceCBType>
Enum Constant and Description |
---|
CREATE
Indicates nano service create callback.
|
DELETE
Indicates nano service delete callback.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
get integer value for enum
|
static NanoServiceCBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NanoServiceCBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NanoServiceCBType CREATE
DpServiceCallback.create(ServiceContext context,
NavuNode service, NavuNode root, Properties opaque)
public static final NanoServiceCBType DELETE
DpServiceCallback.preLockCreate(ServiceContext context,
NavuNode service, NavuNode root, Properties opaque)
public int getValue()
public static NanoServiceCBType 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 nullpublic static NanoServiceCBType[] values()
for (NanoServiceCBType c : NanoServiceCBType.values()) System.out.println(c);