Overview

Namespaces

  • cassandra
  • None
  • PHP
  • phpcassa
    • Batch
    • Connection
    • Index
    • Iterator
    • Schema
      • DataType
    • Util
    • UUID

Classes

  • AuthenticationRequest
  • CassandraClient
  • CfDef
  • Column
  • ColumnDef
  • ColumnOrSuperColumn
  • ColumnParent
  • ColumnPath
  • Compression
  • ConsistencyLevel
  • CounterColumn
  • CounterSuperColumn
  • CqlMetadata
  • CqlPreparedResult
  • CqlResult
  • CqlResultType
  • CqlRow
  • Deletion
  • EndpointDetails
  • IndexClause
  • IndexExpression
  • IndexOperator
  • IndexType
  • KeyCount
  • KeyRange
  • KeySlice
  • KsDef
  • Mutation
  • SlicePredicate
  • SliceRange
  • SuperColumn
  • TokenRange

Interfaces

  • CassandraIf

Exceptions

  • AuthenticationException
  • AuthorizationException
  • InvalidRequestException
  • NotFoundException
  • SchemaDisagreementException
  • TimedOutException
  • UnavailableException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: /**
 3:  *  @generated
 4:  */
 5: namespace cassandra;
 6: class ColumnParent extends \TBase {
 7:   static $_TSPEC;
 8: 
 9:   public $column_family = null;
10:   public $super_column = null;
11: 
12:   public function __construct($vals=null) {
13:     if (!isset(self::$_TSPEC)) {
14:       self::$_TSPEC = array(
15:         3 => array(
16:           'var' => 'column_family',
17:           'type' => \TType::STRING,
18:           ),
19:         4 => array(
20:           'var' => 'super_column',
21:           'type' => \TType::STRING,
22:           ),
23:         );
24:     }
25:     if (is_array($vals)) {
26:       parent::__construct(self::$_TSPEC, $vals);
27:     }
28:   }
29: 
30:   public function getName() {
31:     return 'ColumnParent';
32:   }
33: 
34:   public function read($input)
35:   {
36:     return $this->_read('ColumnParent', self::$_TSPEC, $input);
37:   }
38:   public function write($output) {
39:     return $this->_write('ColumnParent', self::$_TSPEC, $output);
40:   }
41: }
42: 
43: 
44: ?>
45: 
phpcassa API documentation generated by ApiGen 2.8.0