public enum ConcurrencyControlMode extends Enum<ConcurrencyControlMode>
| Enum Constant and Description |
|---|
None |
SipApplicationSession |
SipSession |
Transaction |
| Modifier and Type | Method and Description |
|---|---|
static ConcurrencyControlMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConcurrencyControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConcurrencyControlMode Transaction
public static final ConcurrencyControlMode SipSession
public static final ConcurrencyControlMode SipApplicationSession
public static final ConcurrencyControlMode None
public static ConcurrencyControlMode[] values()
for (ConcurrencyControlMode c : ConcurrencyControlMode.values()) System.out.println(c);
public static ConcurrencyControlMode 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 © 2015. All Rights Reserved.