parent
2f86465e12
commit
2934fb902d
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue