PHP 클래스 TextAnalysis\Queries\QueryAbstractFactory

저자: yooper (yooper)
파일 보기 프로젝트 열기: yooper/php-text-analysis 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$queryString The original string passed into factory method

공개 메소드들

메소드 설명
factory ( string $queryString ) : QueryAbstractFactory
getQuery ( ) : array
getQueryString ( ) : string
queryIndex ( InvertedIndex $invertedIndex ) Each query type is going to interact with the inverted index in its own way

보호된 메소드들

메소드 설명
__construct ( string $queryString ) The query string passed in

메소드 상세

__construct() 보호된 메소드

The query string passed in
protected __construct ( string $queryString )
$queryString string

factory() 공개 정적인 메소드

public static factory ( string $queryString ) : QueryAbstractFactory
$queryString string
리턴 QueryAbstractFactory

getQuery() 추상적인 공개 메소드

abstract public getQuery ( ) : array
리턴 array

getQueryString() 공개 메소드

public getQueryString ( ) : string
리턴 string

queryIndex() 추상적인 공개 메소드

Each query type is going to interact with the inverted index in its own way
abstract public queryIndex ( InvertedIndex $invertedIndex )
$invertedIndex TextAnalysis\Indexes\InvertedIndex

프로퍼티 상세

$queryString 보호되어 있는 프로퍼티

The original string passed into factory method
protected $queryString