C# 클래스 FrequencyAnalyzer.IgnoreList

IgnoreList is used to find, load and save the ignore list. It also contains a default ignore list.
파일 보기 프로젝트 열기: angusmacdonald/word-frequency-analyzer 1 사용 예제들

공개 메소드들

메소드 설명
createIgnoreListFileIfNotExists ( ) : void
getIgnoreList ( ) : HashSet

Look for a word / character ignore list on disk at a specified location. If it is found, load it into memory and ignore all words / characters in the file. If it is not found a new ignore list will be created with a standard set of ignored characters.

비공개 메소드들

메소드 설명
createInitialIgnoreList ( ) : HashSet

These are the default characters that are always escaped. Users can specify others in the ignore list.

getIgnoreListFilePath ( ) : string
ignoringNumbers ( ) : bool

Whether we are to ignore numbers in the frequency counting.

readIgnoreList ( ) : HashSet

메소드 상세

createIgnoreListFileIfNotExists() 공개 정적인 메소드

public static createIgnoreListFileIfNotExists ( ) : void
리턴 void

getIgnoreList() 공개 정적인 메소드

Look for a word / character ignore list on disk at a specified location. If it is found, load it into memory and ignore all words / characters in the file. If it is not found a new ignore list will be created with a standard set of ignored characters.
public static getIgnoreList ( ) : HashSet
리턴 HashSet