com.skype
Enum Call.DTMF

java.lang.Object
  extended by java.lang.Enum<Call.DTMF>
      extended by com.skype.Call.DTMF
All Implemented Interfaces:
Serializable, Comparable<Call.DTMF>
Enclosing class:
Call

public static enum Call.DTMF
extends Enum<Call.DTMF>

Enumeration of DTMF types.


Enum Constant Summary
TYPE_0
           
TYPE_1
           
TYPE_2
           
TYPE_3
           
TYPE_4
           
TYPE_5
           
TYPE_6
           
TYPE_7
           
TYPE_8
           
TYPE_9
           
TYPE_ASTERISK
           
TYPE_SHARP
           
 
Method Summary
static Call.DTMF valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Call.DTMF[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TYPE_0

public static final Call.DTMF TYPE_0

TYPE_1

public static final Call.DTMF TYPE_1

TYPE_2

public static final Call.DTMF TYPE_2

TYPE_3

public static final Call.DTMF TYPE_3

TYPE_4

public static final Call.DTMF TYPE_4

TYPE_5

public static final Call.DTMF TYPE_5

TYPE_6

public static final Call.DTMF TYPE_6

TYPE_7

public static final Call.DTMF TYPE_7

TYPE_8

public static final Call.DTMF TYPE_8

TYPE_9

public static final Call.DTMF TYPE_9

TYPE_SHARP

public static final Call.DTMF TYPE_SHARP

TYPE_ASTERISK

public static final Call.DTMF TYPE_ASTERISK
Method Detail

values

public static Call.DTMF[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Call.DTMF c : Call.DTMF.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Call.DTMF valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2004-2011. All Rights Reserved.