public enum Warning extends Enum<Warning>
BeanVerifier.| Enum Constant and Description |
|---|
DYNAMICALLY_CREATED_FACTORY
When meanbean finds a property type that does not have built-in support for creating random values (like it does
with String, Date, etc), then meanbean creates a dynamic factory hoping that the property type is a java bean.
|
SETTER_SIDE_EFFECT
Disables the check and do not fail for setter methods that have side-effect other properties.
|
| Modifier and Type | Method and Description |
|---|---|
static Warning |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Warning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Warning SETTER_SIDE_EFFECT
public static final Warning DYNAMICALLY_CREATED_FACTORY
public static Warning[] values()
for (Warning c : Warning.values()) System.out.println(c);
public static Warning 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 © 2010–2020 meanbean. All rights reserved.