public class DriverCall extends Object implements Comparable<DriverCall>
Modifier and Type | Class and Description |
---|---|
static class |
DriverCall.State |
Modifier and Type | Field and Description |
---|---|
int |
als |
int |
index |
boolean |
isMpty |
boolean |
isMT |
boolean |
isVoice |
boolean |
isVoicePrivacy |
String |
name |
int |
namePresentation |
String |
number |
int |
numberPresentation |
DriverCall.State |
state |
int |
TOA |
UUSInfo |
uusInfo |
Constructor and Description |
---|
DriverCall() |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(DriverCall dc)
For sorting by index
|
static int |
presentationFromCLIP(int cli) |
static DriverCall.State |
stateFromCLCC(int state) |
String |
toString()
Returns a string representation of the object.
|
public int index
public boolean isMT
public DriverCall.State state
public boolean isMpty
public String number
public int TOA
public boolean isVoice
public boolean isVoicePrivacy
public int als
public int numberPresentation
public String name
public int namePresentation
public UUSInfo uusInfo
public String toString()
Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
public static DriverCall.State stateFromCLCC(int state) throws ATParseEx
ATParseEx
public static int presentationFromCLIP(int cli) throws ATParseEx
ATParseEx
public int compareTo(DriverCall dc)
compareTo
in interface Comparable<DriverCall>
dc
- the object to be compared.