Constructor
new POS()
Example
import { POS } from 'koalanlp/types';
POS.NNP;
Methods
(static) values() → {Array.<POS>}
POS 값들을 모두 돌려줍니다.
Returns:
POS값들의 array
- Type
- Array.<POS>
(static) withName(namenon-null) → {POS}
이름에 해당하는 값을 찾아줍니다.
Parameters:
Name | Type | Description |
---|---|---|
name |
string | 해당 이름으로 된 값 |
Returns:
- Type
- POS
isNoun() → {boolean}
이 값이 체언인지 확인합니다.
Returns:
체언인 경우 true
- Type
- boolean
isPredicate() → {boolean}
이 값이 용언인지 확인합니다.
Returns:
용언인 경우 true
- Type
- boolean
isModifier() → {boolean}
이 값이 수식언인지 확인합니다.
Returns:
수식언인 경우 true
- Type
- boolean
isPostPosition() → {boolean}
이 값이 관계언인지 확인합니다.
Returns:
관계언인 경우 true
- Type
- boolean
isEnding() → {boolean}
이 값이 어미인지 확인합니다.
Returns:
어미인 경우 true
- Type
- boolean
isAffix() → {boolean}
이 값이 접사인지 확인합니다.
Returns:
접사인 경우 true
- Type
- boolean
isSuffix() → {boolean}
이 값이 접미사인지 확인합니다.
Returns:
접미사인 경우 true
- Type
- boolean
isSymbol() → {boolean}
이 값이 기호인지 확인합니다.
Returns:
기호인 경우 true
- Type
- boolean
isUnknown() → {boolean}
이 값이 미확인 단어인지 확인합니다.
Returns:
미확인 단어인 경우 true
- Type
- boolean
startsWith(tagnon-null) → {boolean}
이 값이 주어진 [tag]로 시작하는지 확인합니다.
Parameters:
Name | Type | Description |
---|---|---|
tag |
string | 시작하는지 확인할 품사 분류 |
Returns:
포함되는 경우(시작하는 경우) True
- Type
- boolean