com.techventus.server.voice.datatypes.records
Class Transcript

java.lang.Object
  extended by com.techventus.server.voice.datatypes.records.Transcript

public class Transcript
extends java.lang.Object

A Transcript of a voicemail

Author:
Tobias Eisentraeger

Constructor Summary
Transcript(java.util.List<TranscriptElement> elements)
          Creates a Transcript out of a List of Elements - usage: List transElementList = new ArrayList(); // go through the array and create transscript elments for (int i = 0; i < transElementsAsString.length; i++) { transElementList.add(TranscriptElement.extractTransscriptElement("
Transcript(java.lang.String simpleTransscript)
          Creates a transcripts with only Text, with RecognitionLevel.UNKNOWN
 
Method Summary
 java.util.List<TranscriptElement> getElements()
           
 void setElements(java.util.List<TranscriptElement> elements)
           
 java.lang.String toString()
          returns a simple String representation
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Transcript

public Transcript(java.util.List<TranscriptElement> elements)
Creates a Transcript out of a List of Elements - usage: List transElementList = new ArrayList(); // go through the array and create transscript elments for (int i = 0; i < transElementsAsString.length; i++) { transElementList.add(TranscriptElement.extractTransscriptElement("
Parameters:
elements -

Transcript

public Transcript(java.lang.String simpleTransscript)
Creates a transcripts with only Text, with RecognitionLevel.UNKNOWN

Parameters:
simpleTransscript -
Method Detail

toString

public java.lang.String toString()
returns a simple String representation

Overrides:
toString in class java.lang.Object

getElements

public java.util.List<TranscriptElement> getElements()
Returns:
the elements

setElements

public void setElements(java.util.List<TranscriptElement> elements)
Parameters:
elements - the elements to set