C# 클래스 org.apache.lucene.analysis.compound.hyphenation.Hyphen

This class represents a hyphen. A 'full' hyphen is made of 3 parts: the pre-break text, post-break text and no-break. If no line-break is generated at this position, the no-break text is used, otherwise, pre-break and post-break are used. Typically, pre-break is equal to the hyphen character and the others are empty. However, this general scheme allows support for cases in some languages where words change spelling if they're split across lines, like german's 'backen' which hyphenates 'bak-ken'. BTW, this comes from TeX. This class has been taken from the Apache FOP project (http://xmlgraphics.apache.org/fop/). They have been slightly modified.
파일 보기 프로젝트 열기: paulirwin/lucene.net

공개 프로퍼티들

프로퍼티 타입 설명
noBreak string
postBreak string
preBreak string

공개 메소드들

메소드 설명
ToString ( ) : string

비공개 메소드들

메소드 설명
Hyphen ( string pre ) : System.Text
Hyphen ( string pre, string no, string post ) : System.Text

메소드 상세

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

noBreak 공개적으로 프로퍼티

public string noBreak
리턴 string

postBreak 공개적으로 프로퍼티

public string postBreak
리턴 string

preBreak 공개적으로 프로퍼티

public string preBreak
리턴 string