com.sipresponse.flibblecallmgr
Enum MediaSourceType

java.lang.Object
  extended by java.lang.Enum<MediaSourceType>
      extended by com.sipresponse.flibblecallmgr.MediaSourceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MediaSourceType>

public enum MediaSourceType
extends java.lang.Enum<MediaSourceType>


Enum Constant Summary
MEDIA_SOURCE_DUMMY
           
MEDIA_SOURCE_FILE
           
MEDIA_SOURCE_MICROPHONE
           
MEDIA_SOURCE_NONE
           
 
Method Summary
static MediaSourceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MediaSourceType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MEDIA_SOURCE_MICROPHONE

public static final MediaSourceType MEDIA_SOURCE_MICROPHONE

MEDIA_SOURCE_FILE

public static final MediaSourceType MEDIA_SOURCE_FILE

MEDIA_SOURCE_NONE

public static final MediaSourceType MEDIA_SOURCE_NONE

MEDIA_SOURCE_DUMMY

public static final MediaSourceType MEDIA_SOURCE_DUMMY
Method Detail

values

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

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

valueOf

public static MediaSourceType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name