| 1 | <?php |
||
| 20 | class EnumerationConverter implements TypeConverterInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Convert given object to a scalar representation or an array of scalar values. |
||
| 24 | * |
||
| 25 | * @param Enumeration $object |
||
| 26 | * @return string String representation of Enumeration value |
||
| 27 | * @throws CmisInvalidArgumentException is thrown if given object does not implement expected Enumeration interface |
||
| 28 | */ |
||
| 29 | public static function convertToSimpleType($object) |
||
| 37 | } |
||
| 38 |