Package org.instancio.settings
Enum Mode
- All Implemented Interfaces:
Serializable
,Comparable<Mode>
,java.lang.constant.Constable
The mode is used to specify strictness level, either
STRICT
or LENIENT
, an idea borrowed from the Mockito library.
In strict mode, which is enabled by default, unused selectors will trigger
the UnusedSelectorException
. The error notifies the user of which
selectors are redundant, with the goal of keeping tests clean and concise.
Strict mode can be disabled as follows:
- per object,
InstancioApi.lenient()
method - via
Settings
, by settingKeys.MODE
toLENIENT
- or globally using
instancio.properties
- Since:
- 1.3.3
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
-
Enum Constant Details
-
STRICT
Triggers an exception if at least one selector was not used during object construction.This mode is enabled by default.
- Since:
- 1.3.3
-
LENIENT
In lenient mode, unused selectors are ignored and no exception is triggered.- Since:
- 1.3.3
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-