delimiter = $delimiter; $this->enclosure = $enclosure; $this->escapeChar = $escapeChar; $this->targetCharset = $targetCharset; $this->sourceCharset = $sourceCharset; $this->forceEnclosureEnabled = $forceEnclosureEnabled; } /** * @return string */ public function getDelimiter() { return $this->delimiter; } /** * @return string */ public function getEnclosure() { return $this->enclosure; } /** * @return string */ public function getEscapeChar() { return $this->escapeChar; } /** * @return string */ public function getSourceCharset() { return $this->sourceCharset; } /** * @return string */ public function getTargetCharset() { return $this->targetCharset; } /** * @param string $delimiter */ public function setDelimiter($delimiter) { $this->delimiter = $delimiter; } /** * @param string $enclosure */ public function setEnclosure($enclosure) { $this->enclosure = $enclosure; } /** * @param string $escapeChar */ public function setEscapeChar($escapeChar) { $this->escapeChar = $escapeChar; } /** * @param string $sourceCharset */ public function setSourceCharset($sourceCharset) { $this->sourceCharset = $sourceCharset; } /** * @param string $targetCharset */ public function setTargetCharset($targetCharset) { $this->targetCharset = $targetCharset; } /** * @return bool */ public function isForceEnclosureEnabled() { return $this->forceEnclosureEnabled; } /** * @param bool $forceEnclosureEnabled */ public function setForceEnclosureEnabled($forceEnclosureEnabled) { $this->forceEnclosureEnabled = $forceEnclosureEnabled; } }