Class InsertExperimentEvent.Context.Builder
-
- All Implemented Interfaces:
public final class InsertExperimentEvent.Context.BuilderA builder for Context.
-
-
Method Summary
-
-
Method Detail
-
callerFilename
final InsertExperimentEvent.Context.Builder callerFilename(String callerFilename)
Name of the file in code where the experiment event was created
-
callerFilename
final InsertExperimentEvent.Context.Builder callerFilename(Optional<String> callerFilename)
Alias for calling Builder.callerFilename with
callerFilename.orElse(null).
-
callerFilename
final InsertExperimentEvent.Context.Builder callerFilename(JsonField<String> callerFilename)
Sets Builder.callerFilename to an arbitrary JSON value.
You should usually call Builder.callerFilename with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
callerFunctionname
final InsertExperimentEvent.Context.Builder callerFunctionname(String callerFunctionname)
The function in code which created the experiment event
-
callerFunctionname
final InsertExperimentEvent.Context.Builder callerFunctionname(Optional<String> callerFunctionname)
Alias for calling Builder.callerFunctionname with
callerFunctionname.orElse(null).
-
callerFunctionname
final InsertExperimentEvent.Context.Builder callerFunctionname(JsonField<String> callerFunctionname)
Sets Builder.callerFunctionname to an arbitrary JSON value.
You should usually call Builder.callerFunctionname with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
callerLineno
final InsertExperimentEvent.Context.Builder callerLineno(Long callerLineno)
Line of code where the experiment event was created
-
callerLineno
final InsertExperimentEvent.Context.Builder callerLineno(Long callerLineno)
Alias for Builder.callerLineno.
This unboxed primitive overload exists for backwards compatibility.
-
callerLineno
final InsertExperimentEvent.Context.Builder callerLineno(Optional<Long> callerLineno)
Alias for calling Builder.callerLineno with
callerLineno.orElse(null).
-
callerLineno
final InsertExperimentEvent.Context.Builder callerLineno(JsonField<Long> callerLineno)
Sets Builder.callerLineno to an arbitrary JSON value.
You should usually call Builder.callerLineno with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final InsertExperimentEvent.Context.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final InsertExperimentEvent.Context.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final InsertExperimentEvent.Context.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final InsertExperimentEvent.Context.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final InsertExperimentEvent.Context.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final InsertExperimentEvent.Context build()
Returns an immutable instance of Context.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-