Class BetaDocumentBlock.Source
-
- All Implemented Interfaces:
public final class BetaDocumentBlock.Source
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceBetaDocumentBlock.Source.VisitorAn interface that defines how to map each variant of Source to a value of type T.
-
Method Summary
Modifier and Type Method Description final Optional<BetaBase64PdfSource>base64()final Optional<BetaPlainTextSource>text()final BooleanisBase64()final BooleanisText()final BetaBase64PdfSourceasBase64()final BetaPlainTextSourceasText()final Optional<JsonValue>_json()final <T extends Any> Taccept(BetaDocumentBlock.Source.Visitor<T> visitor)Maps this instance's current variant to a value of type T using the given visitor. final BetaDocumentBlock.Sourcevalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaDocumentBlock.SourceofBase64(BetaBase64PdfSource base64)final static BetaDocumentBlock.SourceofText(BetaPlainTextSource text)-
-
Method Detail
-
base64
final Optional<BetaBase64PdfSource> base64()
-
text
final Optional<BetaPlainTextSource> text()
-
asBase64
final BetaBase64PdfSource asBase64()
-
asText
final BetaPlainTextSource asText()
-
accept
final <T extends Any> T accept(BetaDocumentBlock.Source.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.anthropic.core.JsonValue; import java.util.Optional; Optional<String> result = source.accept(new Source.Visitor<Optional<String>>() { @Override public Optional<String> visitBase64(BetaBase64PdfSource base64) { return Optional.of(base64.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final BetaDocumentBlock.Source validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofBase64
final static BetaDocumentBlock.Source ofBase64(BetaBase64PdfSource base64)
-
ofText
final static BetaDocumentBlock.Source ofText(BetaPlainTextSource text)
-
-
-
-