Record Class DashScopeAudioTranscriptionApi.Outcome.Transcript.Sentence
java.lang.Object
java.lang.Record
com.alibaba.cloud.ai.dashscope.api.DashScopeAudioTranscriptionApi.Outcome.Transcript.Sentence
- Enclosing class:
- DashScopeAudioTranscriptionApi.Outcome.Transcript
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebeginTimerecord component.endTime()Returns the value of theendTimerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesentenceIdrecord component.Returns the value of thespeakerIdrecord component.text()Returns the value of thetextrecord component.final StringtoString()Returns a string representation of this record class.words()Returns the value of thewordsrecord component.
-
Constructor Details
-
Sentence
public Sentence(Integer beginTime, Integer endTime, String text, String sentenceId, String speakerId, List<DashScopeAudioTranscriptionApi.Outcome.Transcript.Sentence.Word> words) Creates an instance of aSentencerecord class.- Parameters:
beginTime- the value for thebeginTimerecord componentendTime- the value for theendTimerecord componenttext- the value for thetextrecord componentsentenceId- the value for thesentenceIdrecord componentspeakerId- the value for thespeakerIdrecord componentwords- the value for thewordsrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
beginTime
Returns the value of thebeginTimerecord component.- Returns:
- the value of the
beginTimerecord component
-
endTime
Returns the value of theendTimerecord component.- Returns:
- the value of the
endTimerecord component
-
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-
sentenceId
Returns the value of thesentenceIdrecord component.- Returns:
- the value of the
sentenceIdrecord component
-
speakerId
Returns the value of thespeakerIdrecord component.- Returns:
- the value of the
speakerIdrecord component
-
words
Returns the value of thewordsrecord component.- Returns:
- the value of the
wordsrecord component
-