예제 #1
0
 public static bool IsOnomatopoetic(this WordType type) => type.GetBigType() == WordType.Onomatopoetic;
예제 #2
0
 public static bool IsUnknow(this WordType type) => type.GetBigType() == WordType.Unknow;
예제 #3
0
 public static bool IsClassification(this WordType type) => type.GetBigType() == WordType.Classifier || type == WordType.NounTimeClassifer;
예제 #4
0
 public static bool IsMark(this WordType type) => type.GetBigType() == WordType.Mark;
예제 #5
0
 public static bool IsExclamtion(this WordType type) => type.GetBigType() == WordType.Exclamation;
예제 #6
0
 public static bool IsIdiom(this WordType type) => type.GetBigType() == WordType.Idiom;
예제 #7
0
 public static bool IsAbbraviation(this WordType type) => type.GetBigType() == WordType.Abbreviation;
예제 #8
0
 public static bool IsProNoun(this WordType type) => type.GetBigType() == WordType.Pronoun;
예제 #9
0
 public static bool IsAuxliary(this WordType type) => type.GetBigType() == WordType.Auxiliary;
예제 #10
0
 public static bool IsNumber(this WordType type) => type.GetBigType() == WordType.Number;
예제 #11
0
 public static bool IsPreposition(this WordType type) => type.GetBigType() == WordType.Preposition;
예제 #12
0
 public static bool IsNotStructureConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction && (type != WordType.ConjunctionStructureAnd && type != WordType.ConjunctionStructureOr);
예제 #13
0
 public static bool IsConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction;
예제 #14
0
 public static bool IsAdverb(this WordType type) => type.GetBigType() == WordType.Adverb;
예제 #15
0
 public static bool IsAdjective(this WordType type) => type.GetBigType() == WordType.AdJective;
예제 #16
0
 public static bool IsNoun(this WordType type) => type.GetBigType() == WordType.Noun;