public enum IncludeType extends Enum<IncludeType>
| Enum Constant and Description |
|---|
EXCLUDE_BOTH
exclude: NULL and ""
|
EXCLUDE_THREE
exclude: NULL , "" and " "
|
INCLUDE_BOTH
include: NULL and ""
|
INCLUDE_EMPTY
include: ""
|
INCLUDE_NULL
include: NULL
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static IncludeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncludeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
Copyright © 2024. All rights reserved.