Enum RuleJpaEntity.SIMILARITY_MATCH_TYPE
- java.lang.Object
-
- java.lang.Enum<RuleJpaEntity.SIMILARITY_MATCH_TYPE>
-
- de.adorsys.multibanking.jpa.entity.RuleJpaEntity.SIMILARITY_MATCH_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<RuleJpaEntity.SIMILARITY_MATCH_TYPE>
- Enclosing class:
- RuleJpaEntity
public static enum RuleJpaEntity.SIMILARITY_MATCH_TYPE extends Enum<RuleJpaEntity.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 RuleJpaEntity.SIMILARITY_MATCH_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static RuleJpaEntity.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 RuleJpaEntity.SIMILARITY_MATCH_TYPE IBAN
-
REFERENCE_NAME
public static final RuleJpaEntity.SIMILARITY_MATCH_TYPE REFERENCE_NAME
-
PURPOSE
public static final RuleJpaEntity.SIMILARITY_MATCH_TYPE PURPOSE
-
-
Method Detail
-
values
public static RuleJpaEntity.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 (RuleJpaEntity.SIMILARITY_MATCH_TYPE c : RuleJpaEntity.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 RuleJpaEntity.SIMILARITY_MATCH_TYPE 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
-
-