You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.fr.design.search; |
|
|
|
/** |
|
* @author Yvan |
|
*/ |
|
public enum TreeSearchStatus { |
|
|
|
/** |
|
* 非搜索模式 |
|
*/ |
|
NOT_IN_SEARCH_MODE, |
|
/** |
|
* 搜索未开始 |
|
*/ |
|
SEARCH_NOT_BEGIN, |
|
/** |
|
* 搜索中 |
|
*/ |
|
SEARCHING, |
|
/** |
|
* 搜索已停止 |
|
*/ |
|
SEARCH_STOPPED, |
|
/** |
|
* 搜索已完成 |
|
*/ |
|
SEARCH_COMPLETED; |
|
}
|
|
|