1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package org.springblade.modules.words;
|
|
| public class IllegalWordsSearchResult
| {
| public IllegalWordsSearchResult(final String keyword, final int start, final int end, final int index,
| final String matchKeyword, final int type)
| {
| MatchKeyword = matchKeyword;
| End = end;
| Start = start;
| Index = index;
| Keyword = keyword;
| BlacklistType = type;
| }
|
| /**开始位置 */
| public int Start;
| /**结束位置 */
| public int End ;
| /**原始文本 */
| public String Keyword ;
| /**关键字 */
| public String MatchKeyword;
| /**黑名单类型 */
| public int BlacklistType ;
| /**索引 */
| public int Index;
|
|
| }
|
|