Enum RuleTO.SIMILARITY_MATCH_TYPE
- java.lang.Object
-
- java.lang.Enum<RuleTO.SIMILARITY_MATCH_TYPE>
-
- de.adorsys.multibanking.web.model.RuleTO.SIMILARITY_MATCH_TYPE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RuleTO.SIMILARITY_MATCH_TYPE>
- Enclosing class:
- RuleTO
public static enum RuleTO.SIMILARITY_MATCH_TYPE extends java.lang.Enum<RuleTO.SIMILARITY_MATCH_TYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IBANPURPOSEREFERENCE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RuleTO.SIMILARITY_MATCH_TYPEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RuleTO.SIMILARITY_MATCH_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IBAN
public static final RuleTO.SIMILARITY_MATCH_TYPE IBAN
-
REFERENCE_NAME
public static final RuleTO.SIMILARITY_MATCH_TYPE REFERENCE_NAME
-
PURPOSE
public static final RuleTO.SIMILARITY_MATCH_TYPE PURPOSE
-
-
Method Detail
-
values
public static RuleTO.SIMILARITY_MATCH_TYPE[] 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 (RuleTO.SIMILARITY_MATCH_TYPE c : RuleTO.SIMILARITY_MATCH_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuleTO.SIMILARITY_MATCH_TYPE valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-