Class BetaFallbackParam.Thinking
-
- All Implemented Interfaces:
public final class BetaFallbackParam.Thinking
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceBetaFallbackParam.Thinking.VisitorAn interface that defines how to map each variant of Thinking to a value of type T.
-
Method Summary
-
-
Method Detail
-
enabled
final Optional<BetaThinkingConfigEnabled> enabled()
-
disabled
final Optional<BetaThinkingConfigDisabled> disabled()
-
adaptive
final Optional<BetaThinkingConfigAdaptive> adaptive()
-
isDisabled
final Boolean isDisabled()
-
isAdaptive
final Boolean isAdaptive()
-
asEnabled
final BetaThinkingConfigEnabled asEnabled()
-
asDisabled
final BetaThinkingConfigDisabled asDisabled()
-
asAdaptive
final BetaThinkingConfigAdaptive asAdaptive()
-
accept
final <T extends Any> T accept(BetaFallbackParam.Thinking.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 = thinking.accept(new Thinking.Visitor<Optional<String>>() { @Override public Optional<String> visitEnabled(BetaThinkingConfigEnabled enabled) { return Optional.of(enabled.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final BetaFallbackParam.Thinking 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.
-
ofEnabled
final static BetaFallbackParam.Thinking ofEnabled(BetaThinkingConfigEnabled enabled)
-
ofDisabled
final static BetaFallbackParam.Thinking ofDisabled(BetaThinkingConfigDisabled disabled)
-
ofAdaptive
final static BetaFallbackParam.Thinking ofAdaptive(BetaThinkingConfigAdaptive adaptive)
-
-
-
-