EnumCapabilityJoin.inc.php 765 Bytes
<?php

/**
 * Enumaerator class for capabilityJoin
 */

require_once(realpath(dirname(__FILE__) . '/../../../../config/dmsDefaults.php'));

define ('CMIS_DIR', KT_LIB_DIR . '/api/ktcmis');
require_once(CMIS_DIR . '/classes/Enum.inc.php');

class EnumCapabilityJoin extends Enum {
    
    static protected $name = 'capabilityJoin';
    static protected $values = array('none', 'inneronly', 'innerandouter');
    
    /**
     * Sets the value of the enumerator
     *
     * @param unknown_type $value
     * @throws invalidArgumentException if the given value does not match one of the allowed values
     *         (exception is thrown in parent class function)
     */
    static protected function set($value)
    {
        parent::set($value);
    }
    
}

?>