Aerospike\LDT\LDT::getModuleName PHP Method

getModuleName() private method

Finds the name of the UDF module providing the functionality needed by the given LDT
private getModuleName ( ) : string
return 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 '';
        }
    }