public struct BigQueryNumeric : IEquatable<BigQueryNumeric>, IComparable<BigQueryNumeric>, IComparable
Reference documentation and code samples for the Google BigQuery v2 API struct BigQueryNumeric.
Representation of the BigQuery 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.BigQuery.V2Assembly
Google.Cloud.BigQuery.V2.dll
Properties
Epsilon
public static BigQueryNumeric Epsilon { get; }
The smallest positive value for BigQueryNumeric, equal to 0.000000001.
Property Value | |
---|---|
Type | Description |
BigQueryNumeric |
MaxValue
public static BigQueryNumeric MaxValue { get; }
The maximum valid value for BigQueryNumeric, equal to 99999999999999999999999999999.999999999.
Property Value | |
---|---|
Type | Description |
BigQueryNumeric |
MinValue
public static BigQueryNumeric MinValue { get; }
The minimum valid value for BigQueryNumeric, equal to -99999999999999999999999999999.999999999.
Property Value | |
---|---|
Type | Description |
BigQueryNumeric |
Zero
public static BigQueryNumeric Zero { get; }
Zero represented as a BigQueryNumeric. This is the default value for the type.
Property Value | |
---|---|
Type | Description |
BigQueryNumeric |
Methods
CompareTo(BigQueryNumeric)
public int CompareTo(BigQueryNumeric other)
Compares this value with other
.
Parameter | |
---|---|
Name | Description |
other | BigQueryNumeric 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 BigQueryNumeric FromDecimal(decimal value, LossOfPrecisionHandling lossOfPrecisionHandling)
Converts a decimal value to BigQueryNumeric,
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 |
BigQueryNumeric | 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 BigQueryNumeric Parse(string text)
Parses a textual representation as a BigQueryNumeric.
Parameter | |
---|---|
Name | Description |
text | string The text to parse. Must not be null. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The parsed value. |
text
must be a representation of a decimal value which can be represented by BigQueryNumeric,
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 BigQueryNumeric. |
ToDecimal(LossOfPrecisionHandling)
public decimal ToDecimal(LossOfPrecisionHandling lossOfPrecisionHandling)
Converts this value to BigQueryNumeric,
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 BigQueryNumeric)
public static bool TryParse(string text, out BigQueryNumeric value)
Attempts to parse a textual representation of a BigQueryNumeric value.
Parameters | |
---|---|
Name | Description |
text | string The text to parse. Must not be null. |
value | BigQueryNumeric 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 +(BigQueryNumeric, BigQueryNumeric)
public static BigQueryNumeric operator +(BigQueryNumeric lhs, BigQueryNumeric rhs)
Returns the result of adding two BigQueryNumeric values together.
Parameters | |
---|---|
Name | Description |
lhs | BigQueryNumeric The first value to add. |
rhs | BigQueryNumeric The second value to add. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The result of adding the two values. |
operator ==(BigQueryNumeric, BigQueryNumeric)
public static bool operator ==(BigQueryNumeric lhs, BigQueryNumeric rhs)
Compares two values for equality.
Parameters | |
---|---|
Name | Description |
lhs | BigQueryNumeric The first value to compare. |
rhs | BigQueryNumeric The second value to compare. |
Returns | |
---|---|
Type | Description |
bool |
|
explicit operator decimal(BigQueryNumeric)
public static explicit operator decimal(BigQueryNumeric value)
Explicit conversion from BigQueryNumeric to decimal.
Parameter | |
---|---|
Name | Description |
value | BigQueryNumeric 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 BigQueryNumeric(decimal)
public static explicit operator BigQueryNumeric(decimal value)
Explicit conversion from decimal to BigQueryNumeric.
Parameter | |
---|---|
Name | Description |
value | decimal The decimal value to convert. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | 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 BigQueryNumeric(int)
public static implicit operator BigQueryNumeric(int value)
Implicit conversion from int to BigQueryNumeric.
Parameter | |
---|---|
Name | Description |
value | int The integer value to convert. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The result of the conversion. |
This conversion exists to avoid ambiguity between the 64-bit conversions when using an integer literal.
implicit operator BigQueryNumeric(long)
public static implicit operator BigQueryNumeric(long value)
Implicit conversion from long to BigQueryNumeric.
Parameter | |
---|---|
Name | Description |
value | long The integer value to convert. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The result of the conversion. |
implicit operator BigQueryNumeric(ulong)
public static implicit operator BigQueryNumeric(ulong value)
Implicit conversion from ulong to BigQueryNumeric.
Parameter | |
---|---|
Name | Description |
value | ulong The integer value to convert. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The result of the conversion. |
operator !=(BigQueryNumeric, BigQueryNumeric)
public static bool operator !=(BigQueryNumeric lhs, BigQueryNumeric rhs)
Compares two values for inequality.
Parameters | |
---|---|
Name | Description |
lhs | BigQueryNumeric The first value to compare. |
rhs | BigQueryNumeric The second value to compare. |
Returns | |
---|---|
Type | Description |
bool |
|
operator -(BigQueryNumeric, BigQueryNumeric)
public static BigQueryNumeric operator -(BigQueryNumeric lhs, BigQueryNumeric rhs)
Returns the result of subtracting one BigQueryNumeric value from another.
Parameters | |
---|---|
Name | Description |
lhs | BigQueryNumeric The value to subtract from. |
rhs | BigQueryNumeric The value to subtract. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The result of subtracting |
operator -(BigQueryNumeric)
public static BigQueryNumeric operator -(BigQueryNumeric value)
The unary negation operator.
Parameter | |
---|---|
Name | Description |
value | BigQueryNumeric The value to negate. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The negation of |
operator +(BigQueryNumeric)
public static BigQueryNumeric operator +(BigQueryNumeric value)
The unary plus operator, provided mainly for consistency.
Parameter | |
---|---|
Name | Description |
value | BigQueryNumeric The value to return. |
Returns | |
---|---|
Type | Description |
BigQueryNumeric | The original value. |