Interface BetaTextCitationParam.Visitor
-
- All Implemented Interfaces:
public interface BetaTextCitationParam.Visitor<T extends Object>An interface that defines how to map each variant of BetaTextCitationParam to a value of type T.
-
-
Method Summary
Modifier and Type Method Description abstract TvisitCharLocation(BetaCitationCharLocationParam charLocation)abstract TvisitPageLocation(BetaCitationPageLocationParam pageLocation)abstract TvisitContentBlockLocation(BetaCitationContentBlockLocationParam contentBlockLocation)abstract TvisitWebSearchResultLocation(BetaCitationWebSearchResultLocationParam webSearchResultLocation)Tunknown(JsonValue json)Maps an unknown variant of BetaTextCitationParam to a value of type T. -
-
Method Detail
-
visitCharLocation
abstract T visitCharLocation(BetaCitationCharLocationParam charLocation)
-
visitPageLocation
abstract T visitPageLocation(BetaCitationPageLocationParam pageLocation)
-
visitContentBlockLocation
abstract T visitContentBlockLocation(BetaCitationContentBlockLocationParam contentBlockLocation)
-
visitWebSearchResultLocation
abstract T visitWebSearchResultLocation(BetaCitationWebSearchResultLocationParam webSearchResultLocation)
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of BetaTextCitationParam to a value of type T.
An instance of BetaTextCitationParam can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-