关于分词器识别车辆号牌的问题

最近开始用HanLP1.x 来对城市警情信息进行分类和打标签。因为警情属于交警行业的数据,所以文本内容里面经常会出现车牌号码,类似 苏A34P05 这样的文字。在对文本内容分词的时候,车牌号码会被分成单个文字和字母和数字的内容。
于是在蝴蝶效应找相关文章,发现了何老师自定义了可以识别URL的分词方法,https://github.com/hankcs/HanLP/blob/1.x/src/main/java/com/hankcs/hanlp/tokenizer/URLTokenizer.java
但是有个问题,

/**
* 分词
* @param text 文本
* @return 分词结果
*/
public static List segment(String text)
{
List termList = new LinkedList();
Matcher matcher = WEB_URL.matcher(text);
int begin = 0;
int end;
while (matcher.find())
{
end = matcher.start();
termList.addAll(SEGMENT.seg(text.substring(begin, end)));
termList.add(new Term(matcher.group(), Nature.xu));
begin = matcher.end();
}
if (begin < text.length()) termList.addAll(SEGMENT.seg(text.substring(begin)));

    return termList;
}

其中的Nature.xu 代表时URL的词性。 经过查找,com.hankcs.hanlp.corpus.tag.Nature 这个类并没有定义类似“车牌”这个词性。
请问如果解决?

已经解决了。 才发现Nature可以用create方法自定义词性!