/**
  * Returns the CamelCase representation of a string
  * @param $value the string
  * @return string camelized
  */
 public function CamelizeFilter($value)
 {
     return Inflexible::camelize($value);
 }