@Deprecated public static enum Fields.Mode extends Enum<Fields.Mode>
| Enum Constant and Description |
|---|
DEEP
Deprecated.
In this mode, all fields are taken into account that were defined with the relevant class or one of its
superclasses and that are not static, transient or synthetic.
|
FLAT
Deprecated.
In this mode, all fields are taken into account that were defined directly with the relevant class
and that are not static, transient or synthetic.
|
| Modifier and Type | Method and Description |
|---|---|
static Fields.Mode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Fields.Mode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fields.Mode FLAT
public static final Fields.Mode DEEP
public static Fields.Mode[] values()
for (Fields.Mode c : Fields.Mode.values()) System.out.println(c);
public static Fields.Mode 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 © 2023 Andreas Kluge-Kaindl, Bremen (de). All rights reserved.