public enum IgnoreMode extends Enum<IgnoreMode>
BeanProperty
builder to mark a property as to be ignored.Enum Constant and Description |
---|
DO_NOT_IGNORE
The property has not to be ignored.
|
IGNORE_INCLUDE_NESTED
The property and any nested property have to be ignored.
|
IGNORE_PROPERTY
The property has to be ignored.
|
Modifier and Type | Method and Description |
---|---|
static IgnoreMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IgnoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoreMode DO_NOT_IGNORE
public static final IgnoreMode IGNORE_PROPERTY
public static final IgnoreMode IGNORE_INCLUDE_NESTED
public static IgnoreMode[] values()
for (IgnoreMode c : IgnoreMode.values()) System.out.println(c);
public static IgnoreMode 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 nullCopyright © 2018 The Holon Platform. All rights reserved.