Class BacktestResults.SimulationParameters.Builder
-
- All Implemented Interfaces:
public final class BacktestResults.SimulationParameters.BuilderA builder for SimulationParameters.
-
-
Method Summary
-
-
Method Detail
-
authRuleToken
final BacktestResults.SimulationParameters.Builder authRuleToken(String authRuleToken)
Auth Rule Token
-
authRuleToken
final BacktestResults.SimulationParameters.Builder authRuleToken(JsonField<String> authRuleToken)
Sets Builder.authRuleToken to an arbitrary JSON value.
You should usually call Builder.authRuleToken with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
end
final BacktestResults.SimulationParameters.Builder end(OffsetDateTime end)
The end time of the simulation.
-
end
final BacktestResults.SimulationParameters.Builder end(JsonField<OffsetDateTime> end)
Sets Builder.end to an arbitrary JSON value.
You should usually call Builder.end with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
start
final BacktestResults.SimulationParameters.Builder start(OffsetDateTime start)
The start time of the simulation.
-
start
final BacktestResults.SimulationParameters.Builder start(JsonField<OffsetDateTime> start)
Sets Builder.start to an arbitrary JSON value.
You should usually call Builder.start with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BacktestResults.SimulationParameters.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BacktestResults.SimulationParameters.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BacktestResults.SimulationParameters.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BacktestResults.SimulationParameters.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BacktestResults.SimulationParameters.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BacktestResults.SimulationParameters build()
Returns an immutable instance of SimulationParameters.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-