Class LobProb.Builder
-
- All Implemented Interfaces:
public final class LobProb.Builder
A builder for LobProb.
-
-
Method Summary
-
-
Method Detail
-
token
final LobProb.Builder token(String token)
-
token
final LobProb.Builder token(JsonField<String> token)
Sets Builder.token to an arbitrary JSON value.
You should usually call Builder.token with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
bytes
final LobProb.Builder bytes(List<Long> bytes)
-
bytes
final LobProb.Builder bytes(JsonField<List<Long>> bytes)
Sets Builder.bytes to an arbitrary JSON value.
You should usually call Builder.bytes with a well-typed
List<Long>
value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addByte
final LobProb.Builder addByte(Long byte_)
-
logprob
final LobProb.Builder logprob(Double logprob)
-
logprob
final LobProb.Builder logprob(JsonField<Double> logprob)
Sets Builder.logprob to an arbitrary JSON value.
You should usually call Builder.logprob with a well-typed Double value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
topLogprobs
final LobProb.Builder topLogprobs(List<TopLogProb> topLogprobs)
-
topLogprobs
final LobProb.Builder topLogprobs(JsonField<List<TopLogProb>> topLogprobs)
Sets Builder.topLogprobs to an arbitrary JSON value.
You should usually call Builder.topLogprobs with a well-typed
List<TopLogProb>
value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addTopLogprob
final LobProb.Builder addTopLogprob(TopLogProb topLogprob)
Adds a single TopLogProb to topLogprobs.
-
additionalProperties
final LobProb.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final LobProb.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final LobProb.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final LobProb.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final LobProb.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-