Interface java.telephony.media.capabilities.MediaTerminalConnectionCapabilities
All Packages Class Hierarchy This Package Previous Next Index
Interface java.telephony.media.capabilities.MediaTerminalConnectionCapabilities
- public interface MediaTerminalConnectionCapabilities
- extends Object
- extends ConnectionCapabilities
The MediaTerminalConnectionCapabilities interface extends the
ConnectionCapabilities interface. This interface provides capabilities
methods for the MediaTerminalConnection object. The methods in this
interface provides applications the ability to query for those actions
where are possible on the MediaTerminalConnection interface as part of
the capabilities package.
-
canDetectDtmf()
- This method returns true if the application is able to detect DTMF-tones
on the telephone line.
-
canGenerateDtmf()
- This method returns true if the application is able to generate DTMF-
tones the telephone line.
-
canStartPlaying()
- This method returns true if the application is able to start playing to
the telephone line.
-
canStartRecording()
- This method returns true if the application is able to start recording
from the telephone line.
-
canStopPlaying()
- This method returns true if the application is able to stop playing to
the telephone line.
-
canStopRecording()
- This method returns true if the application is able to stop recording from
the telephone line.
-
canUseDefaultMicrophone()
- This method returns true if the application can invoke the
useDefaultMicrophone() method and route the media from the default
microphone.
-
canUseDefaultSpeaker()
- This method returns true if the application can invoke the
useDefaultSpeaker() method and route the media from the telephone line
to the default speaker.
-
canUsePlayURL()
- This method returns true if the application can invoke the
usePlayURL() method and route voice media from URL's.
-
canUseRecordURL()
- This method returns true if the application can invoke the
useRecordURL() method and route voice media to URL's.
canUseDefaultSpeaker
public abstract boolean canUseDefaultSpeaker()
- This method returns true if the application can invoke the
useDefaultSpeaker() method and route the media from the telephone line
to the default speaker. Returns false otherwise.
- Returns:
- True if the application can route voice media to the default
speaker, false otherwise.
canUseDefaultMicrophone
public abstract boolean canUseDefaultMicrophone()
- This method returns true if the application can invoke the
useDefaultMicrophone() method and route the media from the default
microphone. Returns false otherwise.
- Returns:
- True if the application can route voice media from the default
microphone, false otherwise.
canUseRecordURL
public abstract boolean canUseRecordURL()
- This method returns true if the application can invoke the
useRecordURL() method and route voice media to URL's. Returns false
otherwise.
- Returns:
- True if the application can route voice media to URL's, false
otherwise.
canUsePlayURL
public abstract boolean canUsePlayURL()
- This method returns true if the application can invoke the
usePlayURL() method and route voice media from URL's. Returns false
otherwise.
- Returns:
- True if the application can route voice media from URL's, false
otherwise.
canStartPlaying
public abstract boolean canStartPlaying()
- This method returns true if the application is able to start playing to
the telephone line. Returns false otherwise.
- Returns:
- True if the application can begin playing to the telephone line,
false otherwise.
canStopPlaying
public abstract boolean canStopPlaying()
- This method returns true if the application is able to stop playing to
the telephone line. Returns false otherwise.
- Returns:
- True if the application can stop playing to the telephone line,
false otherwise.
canStartRecording
public abstract boolean canStartRecording()
- This method returns true if the application is able to start recording
from the telephone line. Returns false otherwise.
- Returns:
- True if the application can start recording from the telephone
line, false otherwise.
canStopRecording
public abstract boolean canStopRecording()
- This method returns true if the application is able to stop recording from
the telephone line. Returns false otherwise.
- Returns:
- True if the application can stop recording from the telephone
line, false otherwise.
canDetectDtmf
public abstract boolean canDetectDtmf()
- This method returns true if the application is able to detect DTMF-tones
on the telephone line. Returns false otherwise. This method indicates
whether the application is able to invoke the setDtmfDetection(true)
method.
- Returns:
- True if the application can detect DTMF-tones from the telephone
line, false otherwise.
canGenerateDtmf
public abstract boolean canGenerateDtmf()
- This method returns true if the application is able to generate DTMF-
tones the telephone line. Returns false otherwise.
- Returns:
- True if the application can generate DTMF-tones to the telephone
line, false otherwise.
All Packages Class Hierarchy This Package Previous Next Index