interface Type
Cassandra\Cluster
object is used to create Sessions.
Implemented by
Methods
Cassandra\Type
varchar
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
text
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
blob
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
ascii
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
bigint
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
counter
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
int
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
varint
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
boolean
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
decimal
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
double
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
float
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
inet
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
timestamp
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
uuid
( )Get representation of cassandra varchar type
- Static
- This method is static
Cassandra\Type
timeuuid
( )Get representation of cassandra varchar type
- Static
- This method is static
Initialize a Type\Collection
type
<?php
use Cassandra\Type;
$collection = Type::collection(Type::int())
->create(1, 2, 3, 4, 5, 6, 7, 8, 9);
var_dump($collection);
- Static
- This method is static
Initialize a map type
<?php
use Cassandra\Type;
$map = Type::map(Type::int(), Type::varchar())
->create(1, "a", 2, "b", 3, "c", 4, "d", 5, "e", 6, "f")
var_dump($map);
- Static
- This method is static
Initialize a set type
<?php
use Cassandra\Type;
$set = Type::set(Type::varchar)
->create("a", "b", "c", "d", "e", "f", "g", "h", "i", "j");
var_dump($set);
- Static
- This method is static
string
name
( )Returns the name of this type as string.
string
__toString
( )Returns string representation of this type.
mixed
create
(mixed
$value = null )
Instantiate a value of this type from provided value(s).