protected static enum BeanToMapConverter.ConversionStyle extends Enum<BeanToMapConverter.ConversionStyle>
| Enum Constant and Description |
|---|
IGNORE
Die Property wird ignoriert.
|
RECURSIVE
Die Property wird rekursiv durchlaufen.
|
TOSTRING
Auf der Property wird die "toString-Methode" aufgerufen.
|
| Modifier and Type | Method and Description |
|---|---|
static BeanToMapConverter.ConversionStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanToMapConverter.ConversionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanToMapConverter.ConversionStyle RECURSIVE
public static final BeanToMapConverter.ConversionStyle TOSTRING
public static final BeanToMapConverter.ConversionStyle IGNORE
public static BeanToMapConverter.ConversionStyle[] values()
for (BeanToMapConverter.ConversionStyle c : BeanToMapConverter.ConversionStyle.values()) System.out.println(c);
public static BeanToMapConverter.ConversionStyle 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 © 2022. All rights reserved.