public enum IncludeType extends Enum<IncludeType>
| 枚举常量和说明 |
|---|
EXCLUDE_BOTH
exclude: NULL and ""
|
EXCLUDE_THREE
exclude: NULL , "" and " "
|
INCLUDE_BOTH
include: NULL and ""
|
INCLUDE_EMPTY
include: ""
|
INCLUDE_NULL
include: NULL
|
public static final IncludeType EXCLUDE_BOTH
public static final IncludeType INCLUDE_NULL
public static final IncludeType INCLUDE_EMPTY
public static final IncludeType INCLUDE_BOTH
public static final IncludeType EXCLUDE_THREE
public static IncludeType[] values()
for (IncludeType c : IncludeType.values()) System.out.println(c);
public static IncludeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getValue()
Copyright © 2021. All rights reserved.