Package com.helger.commons.mock
Enum SPITestHelper.EMode
- java.lang.Object
-
- java.lang.Enum<SPITestHelper.EMode>
-
- com.helger.commons.mock.SPITestHelper.EMode
-
- All Implemented Interfaces:
Serializable,Comparable<SPITestHelper.EMode>
- Enclosing class:
- SPITestHelper
public static enum SPITestHelper.EMode extends Enum<SPITestHelper.EMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IGNORE_ERRORSNO_RESOLVESTRICT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisResolve()booleanisStrict()static SPITestHelper.EModevalueOf(String name)Returns the enum constant of this type with the specified name.static SPITestHelper.EMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRICT
public static final SPITestHelper.EMode STRICT
-
IGNORE_ERRORS
public static final SPITestHelper.EMode IGNORE_ERRORS
-
NO_RESOLVE
public static final SPITestHelper.EMode NO_RESOLVE
-
-
Method Detail
-
values
public static SPITestHelper.EMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SPITestHelper.EMode c : SPITestHelper.EMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SPITestHelper.EMode 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 nameNullPointerException- if the argument is null
-
isStrict
public boolean isStrict()
-
isResolve
public boolean isResolve()
-
-