Record Class AnthropicApi.ContentBlockStartEvent
java.lang.Object
java.lang.Record
org.springframework.ai.anthropic.api.AnthropicApi.ContentBlockStartEvent
- Record Components:
type- The event type.index- The index of the content block.contentBlock- The content block body.
- All Implemented Interfaces:
AnthropicApi.StreamEvent
- Enclosing class:
- AnthropicApi
public static record AnthropicApi.ContentBlockStartEvent(AnthropicApi.EventType type, Integer index, AnthropicApi.ContentBlockStartEvent.ContentBlockBody contentBlock)
extends Record
implements AnthropicApi.StreamEvent
Content block start event.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfacestatic final recordText content block.static final recordThinking content block.static final recordTool use content block. -
Constructor Summary
ConstructorsConstructorDescriptionContentBlockStartEvent(AnthropicApi.EventType type, Integer index, AnthropicApi.ContentBlockStartEvent.ContentBlockBody contentBlock) Creates an instance of aContentBlockStartEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontentBlockrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.index()Returns the value of theindexrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
ContentBlockStartEvent
public ContentBlockStartEvent(AnthropicApi.EventType type, Integer index, AnthropicApi.ContentBlockStartEvent.ContentBlockBody contentBlock) Creates an instance of aContentBlockStartEventrecord class.- Parameters:
type- the value for thetyperecord componentindex- the value for theindexrecord componentcontentBlock- the value for thecontentBlockrecord 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). -
type
Returns the value of thetyperecord component.- Specified by:
typein interfaceAnthropicApi.StreamEvent- Returns:
- the value of the
typerecord component
-
index
Returns the value of theindexrecord component.- Returns:
- the value of the
indexrecord component
-
contentBlock
Returns the value of thecontentBlockrecord component.- Returns:
- the value of the
contentBlockrecord component
-