Lucene.Net.Analysis.Miscellaneous.Lucene47WordDelimiterFilter.IsSubwordDelim C# (CSharp) 메소드

IsSubwordDelim() 정적인 개인적인 메소드

Checks if the given word type includes #SUBWORD_DELIM
static private IsSubwordDelim ( int type ) : bool
type int Word type to check
리턴 bool
        internal static bool IsSubwordDelim(int type)
        {
            return (type & SUBWORD_DELIM) != 0;
        }