<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * This class stands for DocumentCategoryEnum EnumType
 * Meta informations extracted from the WSDL
 * - nillable: true
 * - type: tns:DocumentCategoryEnum
 * @subpackage Enumerations
 */
class DocumentCategoryEnum
{
    /**
     * Constant for value 'Contract'
     * @return string 'Contract'
     */
    const ENUM_VALUE_0 = 'Contract';
    /**
     * Constant for value 'ContractSupplementary'
     * @return string 'ContractSupplementary'
     */
    const ENUM_VALUE_1 = 'ContractSupplementary';
    /**
     * Return true if value is allowed
     * @uses self::getValidValues()
     * @param mixed $value value
     * @return bool true|false
     */
    public static function valueIsValid($value)
    {
        return ($value === null) || in_array($value, self::getValidValues(), true);
    }
    /**
     * Return allowed values
     * @uses self::ENUM_VALUE_0
     * @uses self::ENUM_VALUE_1
     * @return string[]
     */
    public static function getValidValues()
    {
        return array(
            self::ENUM_VALUE_0,
            self::ENUM_VALUE_1,
        );
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
</pre></body></html>