REM:
1. 增加处置类型IP+URL组合
This commit is contained in:
HuangXin 2020-10-09 17:39:10 +08:00
parent 2f86465e12
commit 2934fb902d
1 changed files with 12 additions and 7 deletions

View File

@ -16,19 +16,24 @@ public enum DisposeObjectType implements BaseEnum {
DOMAIN(1 << 1, "域名"),
/**
* Ip domain dispose object type.
* The Ip domain.
*/
IP_DOMAIN((1 << 1 | 1), "IP地址和域名"),
/**
* Ip domain url dispose object type.
* The Ip domain url.
*/
IP_DOMAIN_URL((1 << 2 | 1 << 1 | 1), "IP地址,域名,URL"),
/**
* Domain url dispose object type.
* The Domain url.
*/
DOMAIN_URL((1 << 2 | 1 << 1), "域名和URL"),
/**
* Ip url dispose object type.
*/
IP_URL(1 | 1 << 2, "IP地址和URL"),
/**
* The Url.
*/
@ -56,9 +61,9 @@ public enum DisposeObjectType implements BaseEnum {
}
/**
* Gets code.
* Gets value.
*
* @return the code
* @return the value
*/
@Override
public Integer getValue() {
@ -66,9 +71,9 @@ public enum DisposeObjectType implements BaseEnum {
}
/**
* Gets readme.
* Gets description.
*
* @return the readme
* @return the description
*/
@Override
public String getDescription() {