Enum DataDictionary.PathMappingStrategy
- java.lang.Object
-
- java.lang.Enum<DataDictionary.PathMappingStrategy>
-
- com.consol.citrus.variable.dictionary.DataDictionary.PathMappingStrategy
-
- All Implemented Interfaces:
Serializable,Comparable<DataDictionary.PathMappingStrategy>
- Enclosing interface:
- DataDictionary<T>
public static enum DataDictionary.PathMappingStrategy extends Enum<DataDictionary.PathMappingStrategy>
Possible mapping strategies for identifying matching dictionary items with path comparison.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENDS_WITHEXACTSTARTS_WITH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataDictionary.PathMappingStrategyvalueOf(String name)Returns the enum constant of this type with the specified name.static DataDictionary.PathMappingStrategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXACT
public static final DataDictionary.PathMappingStrategy EXACT
-
ENDS_WITH
public static final DataDictionary.PathMappingStrategy ENDS_WITH
-
STARTS_WITH
public static final DataDictionary.PathMappingStrategy STARTS_WITH
-
-
Method Detail
-
values
public static DataDictionary.PathMappingStrategy[] 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 (DataDictionary.PathMappingStrategy c : DataDictionary.PathMappingStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataDictionary.PathMappingStrategy 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
-
-