- 2.65.1 (latest)
- 2.65.0
- 2.64.1
- 2.63.2
- 2.62.0
- 2.61.3
- 2.60.0
- 2.59.2
- 2.58.0
- 2.57.0
- 2.56.0
- 2.54.1
- 2.53.0
- 2.52.0
- 2.51.0
- 2.50.1
- 2.49.0
- 2.48.0
- 2.46.0
- 2.45.1
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.39.1
- 2.38.0
- 2.37.1
- 2.36.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.1
- 2.24.0
- 2.23.1
- 2.22.1
- 2.21.1
- 2.15.0
- 2.14.3
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.6
- 2.8.4
- 2.7.4
public static final class Decimal.Builder extends GeneratedMessage.Builder<Decimal.Builder> implements DecimalOrBuilderA representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python's decimal.Decimal.
[BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html
Protobuf type google.type.Decimal
Inheritance
java.lang.Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessage.Builder > Decimal.BuilderImplements
DecimalOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()| Returns | |
|---|---|
| Type | Description |
Descriptor |
|
Methods
build()
public Decimal build()| Returns | |
|---|---|
| Type | Description |
Decimal |
|
buildPartial()
public Decimal buildPartial()| Returns | |
|---|---|
| Type | Description |
Decimal |
|
clear()
public Decimal.Builder clear()| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
|
clearValue()
public Decimal.Builder clearValue()The decimal value, as a string.
The string representation consists of an optional sign, + (U+002B)
or - (U+002D), followed by a sequence of zero or more decimal digits
("the integer"), optionally followed by a fraction, optionally followed
by an exponent.
The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand.
The exponent consists of the character e (U+0065) or E (U+0045)
followed by one or more decimal digits.
Services should normalize decimal values before storing them by:
- Removing an explicitly-provided
+sign (+2.5->2.5). - Replacing a zero-length integer value with
0(.5->0.5). - Coercing the exponent character to lower-case (
2.5E8->2.5e8). Removing an explicitly-provided zero exponent (
2.5e0->2.5).Services may perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example:
2.5e-1<->0.25). Additionally, services may preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so.Note that only the
.character is supported to divide the integer and the fraction;,should not be supported regardless of locale. Additionally, thousand separators should not be supported. If a service does support them, values must be normalized.The ENBF grammar is:
DecimalString = [Sign] Significand [Exponent];
Sign = '+' | '-';
Significand = Digits ['.'] [Digits] | [Digits] '.' Digits;
Exponent = ('e' | 'E') [Sign] Digits;
Digits = { '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' };
Services should clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values.
Services may choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and should round the value to fit the supported scale. Alternatively, the service may error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if precision would be lost.Services should error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if the service receives a value outside of the supported range.
string value = 1;
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
This builder for chaining. |
getDefaultInstanceForType()
public Decimal getDefaultInstanceForType()| Returns | |
|---|---|
| Type | Description |
Decimal |
|
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()| Returns | |
|---|---|
| Type | Description |
Descriptor |
|
getValue()
public String getValue()The decimal value, as a string.
The string representation consists of an optional sign, + (U+002B)
or - (U+002D), followed by a sequence of zero or more decimal digits
("the integer"), optionally followed by a fraction, optionally followed
by an exponent.
The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand.
The exponent consists of the character e (U+0065) or E (U+0045)
followed by one or more decimal digits.
Services should normalize decimal values before storing them by:
- Removing an explicitly-provided
+sign (+2.5->2.5). - Replacing a zero-length integer value with
0(.5->0.5). - Coercing the exponent character to lower-case (
2.5E8->2.5e8). Removing an explicitly-provided zero exponent (
2.5e0->2.5).Services may perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example:
2.5e-1<->0.25). Additionally, services may preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so.Note that only the
.character is supported to divide the integer and the fraction;,should not be supported regardless of locale. Additionally, thousand separators should not be supported. If a service does support them, values must be normalized.The ENBF grammar is:
DecimalString = [Sign] Significand [Exponent];
Sign = '+' | '-';
Significand = Digits ['.'] [Digits] | [Digits] '.' Digits;
Exponent = ('e' | 'E') [Sign] Digits;
Digits = { '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' };
Services should clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values.
Services may choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and should round the value to fit the supported scale. Alternatively, the service may error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if precision would be lost.Services should error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if the service receives a value outside of the supported range.
string value = 1;
| Returns | |
|---|---|
| Type | Description |
String |
The value. |
getValueBytes()
public ByteString getValueBytes()The decimal value, as a string.
The string representation consists of an optional sign, + (U+002B)
or - (U+002D), followed by a sequence of zero or more decimal digits
("the integer"), optionally followed by a fraction, optionally followed
by an exponent.
The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand.
The exponent consists of the character e (U+0065) or E (U+0045)
followed by one or more decimal digits.
Services should normalize decimal values before storing them by:
- Removing an explicitly-provided
+sign (+2.5->2.5). - Replacing a zero-length integer value with
0(.5->0.5). - Coercing the exponent character to lower-case (
2.5E8->2.5e8). Removing an explicitly-provided zero exponent (
2.5e0->2.5).Services may perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example:
2.5e-1<->0.25). Additionally, services may preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so.Note that only the
.character is supported to divide the integer and the fraction;,should not be supported regardless of locale. Additionally, thousand separators should not be supported. If a service does support them, values must be normalized.The ENBF grammar is:
DecimalString = [Sign] Significand [Exponent];
Sign = '+' | '-';
Significand = Digits ['.'] [Digits] | [Digits] '.' Digits;
Exponent = ('e' | 'E') [Sign] Digits;
Digits = { '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' };
Services should clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values.
Services may choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and should round the value to fit the supported scale. Alternatively, the service may error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if precision would be lost.Services should error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if the service receives a value outside of the supported range.
string value = 1;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for value. |
internalGetFieldAccessorTable()
protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()| Returns | |
|---|---|
| Type | Description |
FieldAccessorTable |
|
isInitialized()
public final boolean isInitialized()| Returns | |
|---|---|
| Type | Description |
boolean |
|
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public Decimal.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)| Parameters | |
|---|---|
| Name | Description |
input |
CodedInputStream |
extensionRegistry |
ExtensionRegistryLite |
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
mergeFrom(Message other)
public Decimal.Builder mergeFrom(Message other)| Parameter | |
|---|---|
| Name | Description |
other |
Message |
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
|
mergeFrom(Decimal other)
public Decimal.Builder mergeFrom(Decimal other)| Parameter | |
|---|---|
| Name | Description |
other |
Decimal |
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
|
setValue(String value)
public Decimal.Builder setValue(String value)The decimal value, as a string.
The string representation consists of an optional sign, + (U+002B)
or - (U+002D), followed by a sequence of zero or more decimal digits
("the integer"), optionally followed by a fraction, optionally followed
by an exponent.
The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand.
The exponent consists of the character e (U+0065) or E (U+0045)
followed by one or more decimal digits.
Services should normalize decimal values before storing them by:
- Removing an explicitly-provided
+sign (+2.5->2.5). - Replacing a zero-length integer value with
0(.5->0.5). - Coercing the exponent character to lower-case (
2.5E8->2.5e8). Removing an explicitly-provided zero exponent (
2.5e0->2.5).Services may perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example:
2.5e-1<->0.25). Additionally, services may preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so.Note that only the
.character is supported to divide the integer and the fraction;,should not be supported regardless of locale. Additionally, thousand separators should not be supported. If a service does support them, values must be normalized.The ENBF grammar is:
DecimalString = [Sign] Significand [Exponent];
Sign = '+' | '-';
Significand = Digits ['.'] [Digits] | [Digits] '.' Digits;
Exponent = ('e' | 'E') [Sign] Digits;
Digits = { '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' };
Services should clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values.
Services may choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and should round the value to fit the supported scale. Alternatively, the service may error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if precision would be lost.Services should error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if the service receives a value outside of the supported range.
string value = 1;
| Parameter | |
|---|---|
| Name | Description |
value |
StringThe value to set. |
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
This builder for chaining. |
setValueBytes(ByteString value)
public Decimal.Builder setValueBytes(ByteString value)The decimal value, as a string.
The string representation consists of an optional sign, + (U+002B)
or - (U+002D), followed by a sequence of zero or more decimal digits
("the integer"), optionally followed by a fraction, optionally followed
by an exponent.
The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand.
The exponent consists of the character e (U+0065) or E (U+0045)
followed by one or more decimal digits.
Services should normalize decimal values before storing them by:
- Removing an explicitly-provided
+sign (+2.5->2.5). - Replacing a zero-length integer value with
0(.5->0.5). - Coercing the exponent character to lower-case (
2.5E8->2.5e8). Removing an explicitly-provided zero exponent (
2.5e0->2.5).Services may perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example:
2.5e-1<->0.25). Additionally, services may preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so.Note that only the
.character is supported to divide the integer and the fraction;,should not be supported regardless of locale. Additionally, thousand separators should not be supported. If a service does support them, values must be normalized.The ENBF grammar is:
DecimalString = [Sign] Significand [Exponent];
Sign = '+' | '-';
Significand = Digits ['.'] [Digits] | [Digits] '.' Digits;
Exponent = ('e' | 'E') [Sign] Digits;
Digits = { '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' };
Services should clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values.
Services may choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and should round the value to fit the supported scale. Alternatively, the service may error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if precision would be lost.Services should error with
400 Bad Request(INVALID_ARGUMENTin gRPC) if the service receives a value outside of the supported range.
string value = 1;
| Parameter | |
|---|---|
| Name | Description |
value |
ByteStringThe bytes for value to set. |
| Returns | |
|---|---|
| Type | Description |
Decimal.Builder |
This builder for chaining. |