Class BetaMemoryTool20250818InsertCommand.Builder
-
- All Implemented Interfaces:
public final class BetaMemoryTool20250818InsertCommand.BuilderA builder for BetaMemoryTool20250818InsertCommand.
-
-
Method Summary
-
-
Method Detail
-
command
final BetaMemoryTool20250818InsertCommand.Builder command(JsonValue command)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("insert")This method is primarily for setting the field to an undocumented or not yet supported value.
-
insertLine
final BetaMemoryTool20250818InsertCommand.Builder insertLine(Long insertLine)
Line number where text should be inserted
-
insertLine
final BetaMemoryTool20250818InsertCommand.Builder insertLine(JsonField<Long> insertLine)
Sets Builder.insertLine to an arbitrary JSON value.
You should usually call Builder.insertLine with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
insertText
final BetaMemoryTool20250818InsertCommand.Builder insertText(String insertText)
Text to insert at the specified line
-
insertText
final BetaMemoryTool20250818InsertCommand.Builder insertText(JsonField<String> insertText)
Sets Builder.insertText to an arbitrary JSON value.
You should usually call Builder.insertText with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
path
final BetaMemoryTool20250818InsertCommand.Builder path(String path)
Path to the file where text should be inserted
-
path
final BetaMemoryTool20250818InsertCommand.Builder path(JsonField<String> path)
Sets Builder.path to an arbitrary JSON value.
You should usually call Builder.path with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaMemoryTool20250818InsertCommand.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaMemoryTool20250818InsertCommand.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaMemoryTool20250818InsertCommand.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaMemoryTool20250818InsertCommand.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaMemoryTool20250818InsertCommand.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaMemoryTool20250818InsertCommand build()
Returns an immutable instance of BetaMemoryTool20250818InsertCommand.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.insertLine() .insertText() .path()
-
-
-
-