Enum Mode

java.lang.Object
java.lang.Enum<Mode>
org.instancio.settings.Mode
All Implemented Interfaces:
Serializable, Comparable<Mode>, java.lang.constant.Constable

public enum Mode extends Enum<Mode>
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:

Since:
1.3.3
See Also:
  • Enum Constant Details

    • STRICT

      public static final Mode 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

      public static final Mode LENIENT
      In lenient mode, unused selectors are ignored and no exception is triggered.
      Since:
      1.3.3
  • Method Details

    • values

      public static Mode[] 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

      public static Mode valueOf(String name)
      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 name
      NullPointerException - if the argument is null