Method | Description | |
---|---|---|
__construct ( string $value ) | Creates a new 16bit integer. | |
abs ( ) : cassandra\Numeric | ||
add ( cassandra\Numeric $addend ) : cassandra\Numeric | ||
div ( cassandra\Numeric $divisor ) : cassandra\Numeric | ||
max ( ) : |
Maximum possible Smallint value | |
min ( ) : |
Minimum possible Smallint value | |
mod ( cassandra\Numeric $divisor ) : cassandra\Numeric | ||
mul ( cassandra\Numeric $multiplier ) : cassandra\Numeric | ||
neg ( ) : cassandra\Numeric | ||
sqrt ( ) : cassandra\Numeric | ||
sub ( cassandra\Numeric $subtrahend ) : cassandra\Numeric | ||
toDouble ( ) : float | ||
toInt ( ) : integer | ||
type ( ) : cassandra\Type | The type of this value (smallint). | |
value ( ) : integer | Returns the integer value. |
public __construct ( string $value ) | ||
$value | string | integer value as a string |
public add ( cassandra\Numeric $addend ) : cassandra\Numeric | ||
$addend | cassandra\Numeric | a number to add to this one |
return | cassandra\Numeric | sum |
public div ( cassandra\Numeric $divisor ) : cassandra\Numeric | ||
$divisor | cassandra\Numeric | a number to divide this one by |
return | cassandra\Numeric | quotient |
public static max ( ) : |
||
return | maximum value |
public static min ( ) : |
||
return | minimum value |
public mod ( cassandra\Numeric $divisor ) : cassandra\Numeric | ||
$divisor | cassandra\Numeric | a number to divide this one by |
return | cassandra\Numeric | remainder |
public mul ( cassandra\Numeric $multiplier ) : cassandra\Numeric | ||
$multiplier | cassandra\Numeric | a number to multiply this one by |
return | cassandra\Numeric | product |
public sub ( cassandra\Numeric $subtrahend ) : cassandra\Numeric | ||
$subtrahend | cassandra\Numeric | a number to subtract from this one |
return | cassandra\Numeric | difference |
public type ( ) : cassandra\Type | ||
return | cassandra\Type |