public static enum Call.OperandChannel extends Enum<Call.OperandChannel>
Enum Constant and Description |
---|
ACCEPTING_PARTY
this party received (did not originate) the call
|
LOCAL_PARTY
a local call is a handset attached directly (via sip) to the pbx
|
ORIGINATING_PARTY
this party originated (dialled) the call
|
REMOTE_PARTY
is an end point that is on an external trunk
|
TRANSFER_TARGET_PARTY |
Modifier and Type | Method and Description |
---|---|
static Call.OperandChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Call.OperandChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.OperandChannel ACCEPTING_PARTY
public static final Call.OperandChannel ORIGINATING_PARTY
public static final Call.OperandChannel TRANSFER_TARGET_PARTY
public static final Call.OperandChannel REMOTE_PARTY
public static final Call.OperandChannel LOCAL_PARTY
public static Call.OperandChannel[] values()
for (Call.OperandChannel c : Call.OperandChannel.values()) System.out.println(c);
public static Call.OperandChannel 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 © 2004–2020. All rights reserved.