public struct SpannerNumeric : IEquatable<SpannerNumeric>, IComparable<SpannerNumeric>, IComparable
Reference documentation and code samples for the Google Cloud Spanner v1 API struct SpannerNumeric.
Representation of the Spanner NUMERIC type, which has 38 digits of precision, and a fixed scale of 9 decimal places to the right of the decimal point
Namespace
Google.Cloud.Spanner.V1Assembly
Google.Cloud.Spanner.V1.dll
Properties
Epsilon
public static SpannerNumeric Epsilon { get; }
The smallest positive value for SpannerNumeric, equal to 0.000000001.
Property Value | |
---|---|
Type | Description |
SpannerNumeric |
MaxValue
public static SpannerNumeric MaxValue { get; }
The maximum valid value for SpannerNumeric, equal to 99999999999999999999999999999.999999999.
Property Value | |
---|---|
Type | Description |
SpannerNumeric |
MinValue
public static SpannerNumeric MinValue { get; }
The minimum valid value for SpannerNumeric, equal to -99999999999999999999999999999.999999999.
Property Value | |
---|---|
Type | Description |
SpannerNumeric |
Zero
public static SpannerNumeric Zero { get; }
Zero represented as a SpannerNumeric. This is the default value for the type.
Property Value | |
---|---|
Type | Description |
SpannerNumeric |
Methods
CompareTo(SpannerNumeric)
public int CompareTo(SpannerNumeric other)
Compares this value with other
.
Parameter | |
---|---|
Name | Description |
other |
SpannerNumeric The value to compare with this one |
Returns | |
---|---|
Type | Description |
int |
A negative integer if this value is less than |
FromDecimal(decimal, LossOfPrecisionHandling)
public static SpannerNumeric FromDecimal(decimal value, LossOfPrecisionHandling lossOfPrecisionHandling)
Converts a decimal value to SpannerNumeric,
Parameters | |
---|---|
Name | Description |
value |
decimal The value to convert |
lossOfPrecisionHandling |
LossOfPrecisionHandling How to handle values with signficant digits that would be lost by the conversion. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The converted value. |
This conversion may silently lose precision, depending on lossOfPrecisionHandling
.
GetHashCode()
public override int GetHashCode()
Returns a hash code for this value.
Returns | |
---|---|
Type | Description |
int |
A hash code for this value. |
Parse(string)
public static SpannerNumeric Parse(string text)
Parses a textual representation as a SpannerNumeric.
Parameter | |
---|---|
Name | Description |
text |
string The text to parse. Must not be null. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The parsed value. |
text
must be a representation of a decimal value which can be represented by SpannerNumeric,
using "." as a decimal place where one is specified, and a leading "-" for negative values. Leading zeroes and insignificant
trailing digits are permitted.
Exceptions | |
---|---|
Type | Description |
FormatException |
The value could not be parsed as a SpannerNumeric. |
ToDecimal(LossOfPrecisionHandling)
public decimal ToDecimal(LossOfPrecisionHandling lossOfPrecisionHandling)
Converts this value to decimal,
Parameter | |
---|---|
Name | Description |
lossOfPrecisionHandling |
LossOfPrecisionHandling How to handle values with signficant digits that would be lost by the conversion. |
Returns | |
---|---|
Type | Description |
decimal |
The converted value. |
This conversion may silently lose precision, depending on lossOfPrecisionHandling
, but
will always throw OverflowException if value is out of the range of decimal.
Exceptions | |
---|---|
Type | Description |
OverflowException |
This value is outside the range of decimal. |
ToString()
public override string ToString()
Returns a canonical string representation of this value. This always uses "." as a decimal point, and only includes as many decimal places as are required to completely represent the value. If the value is between -1 and 1 exclusive, a "0" character is included before the decimal point.
Returns | |
---|---|
Type | Description |
string |
A canonical string representation of this value. |
TryParse(string, out SpannerNumeric)
public static bool TryParse(string text, out SpannerNumeric value)
Attempts to parse a textual representation of a SpannerNumeric value.
Parameters | |
---|---|
Name | Description |
text |
string The text to parse. Must not be null. |
value |
SpannerNumeric The parsed value, or 0 on failure. |
Returns | |
---|---|
Type | Description |
bool |
|
See Parse(string) for format details. This method will return true
if and only if
Parse(string) would return without an exception.
Operators
operator +(SpannerNumeric, SpannerNumeric)
public static SpannerNumeric operator +(SpannerNumeric lhs, SpannerNumeric rhs)
Returns the result of adding two SpannerNumeric values together.
Parameters | |
---|---|
Name | Description |
lhs |
SpannerNumeric The first value to add. |
rhs |
SpannerNumeric The second value to add. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of adding the two values. |
operator ==(SpannerNumeric, SpannerNumeric)
public static bool operator ==(SpannerNumeric lhs, SpannerNumeric rhs)
Compares two values for equality.
Parameters | |
---|---|
Name | Description |
lhs |
SpannerNumeric The first value to compare. |
rhs |
SpannerNumeric The second value to compare. |
Returns | |
---|---|
Type | Description |
bool |
|
explicit operator decimal(SpannerNumeric)
public static explicit operator decimal(SpannerNumeric value)
Explicit conversion from SpannerNumeric to decimal.
Parameter | |
---|---|
Name | Description |
value |
SpannerNumeric The numeric value to convert. |
Returns | |
---|---|
Type | Description |
decimal |
The result of the conversion. |
This conversion may silently lose precision, but will throw OverflowException if the value is out of range of decimal. Use ToDecimal(LossOfPrecisionHandling) passing in Throw for the second argument to avoid any information loss.
explicit operator SpannerNumeric(decimal)
public static explicit operator SpannerNumeric(decimal value)
Explicit conversion from decimal to SpannerNumeric.
Parameter | |
---|---|
Name | Description |
value |
decimal The decimal value to convert. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of the conversion. |
This conversion may silently lose precision. Use FromDecimal(decimal, LossOfPrecisionHandling) passing in Throw for the second argument to avoid any information loss.
implicit operator SpannerNumeric(int)
public static implicit operator SpannerNumeric(int value)
Implicit conversion from int to SpannerNumeric.
Parameter | |
---|---|
Name | Description |
value |
int The integer value to convert. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of the conversion. |
This conversion exists to avoid ambiguity between the 64-bit conversions when using an integer literal.
implicit operator SpannerNumeric(long)
public static implicit operator SpannerNumeric(long value)
Implicit conversion from long to SpannerNumeric.
Parameter | |
---|---|
Name | Description |
value |
long The integer value to convert. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of the conversion. |
implicit operator SpannerNumeric(ulong)
public static implicit operator SpannerNumeric(ulong value)
Implicit conversion from ulong to SpannerNumeric.
Parameter | |
---|---|
Name | Description |
value |
ulong The integer value to convert. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of the conversion. |
operator !=(SpannerNumeric, SpannerNumeric)
public static bool operator !=(SpannerNumeric lhs, SpannerNumeric rhs)
Compares two values for inequality.
Parameters | |
---|---|
Name | Description |
lhs |
SpannerNumeric The first value to compare. |
rhs |
SpannerNumeric The second value to compare. |
Returns | |
---|---|
Type | Description |
bool |
|
operator -(SpannerNumeric, SpannerNumeric)
public static SpannerNumeric operator -(SpannerNumeric lhs, SpannerNumeric rhs)
Returns the result of subtracting one SpannerNumeric value from another.
Parameters | |
---|---|
Name | Description |
lhs |
SpannerNumeric The value to subtract from. |
rhs |
SpannerNumeric The value to subtract. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The result of subtracting |
operator -(SpannerNumeric)
public static SpannerNumeric operator -(SpannerNumeric value)
The unary negation operator.
Parameter | |
---|---|
Name | Description |
value |
SpannerNumeric The value to negate. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The negation of |
operator +(SpannerNumeric)
public static SpannerNumeric operator +(SpannerNumeric value)
The unary plus operator, provided mainly for consistency.
Parameter | |
---|---|
Name | Description |
value |
SpannerNumeric The value to return. |
Returns | |
---|---|
Type | Description |
SpannerNumeric |
The original value. |