Aerospike\LDT\LDT::getModuleName PHP 메소드

getModuleName() 개인적인 메소드

Finds the name of the UDF module providing the functionality needed by the given LDT
private getModuleName ( ) : string
리턴 string
    private function getModuleName()
    {
        switch ($this->type) {
            case self::LLIST:
                return 'llist';
            case self::LMAP:
                return 'lmap';
            case self::LSET:
                return 'lset';
            case self::LSTACK:
                return 'lstack';
            default:
                return '';
        }
    }