Package de.hybris.platform.payment.dto
Enum AvsStatus
- java.lang.Object
-
- java.lang.Enum<AvsStatus>
-
- de.hybris.platform.payment.dto.AvsStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALIDGenerated enum value forAvsStatus.INVALIDvalue defined at extensionpayment.MATCHEDGenerated enum value forAvsStatus.MATCHEDvalue defined at extensionpayment.NO_RESULTGenerated enum value forAvsStatus.NO_RESULTvalue defined at extensionpayment.NOT_MATCHEDGenerated enum value forAvsStatus.NOT_MATCHEDvalue defined at extensionpayment.NOT_SUPPORTEDGenerated enum value forAvsStatus.NOT_SUPPORTEDvalue defined at extensionpayment.PARTIAL_MATCHGenerated enum value forAvsStatus.PARTIAL_MATCHvalue defined at extensionpayment.SYSTEM_UNAVAILABLEGenerated enum value forAvsStatus.SYSTEM_UNAVAILABLEvalue defined at extensionpayment.UNRECOGNIZED_RESULTGenerated enum value forAvsStatus.UNRECOGNIZED_RESULTvalue defined at extensionpayment.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AvsStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AvsStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARTIAL_MATCH
public static final AvsStatus PARTIAL_MATCH
Generated enum value forAvsStatus.PARTIAL_MATCHvalue defined at extensionpayment.
-
MATCHED
public static final AvsStatus MATCHED
Generated enum value forAvsStatus.MATCHEDvalue defined at extensionpayment.
-
NOT_MATCHED
public static final AvsStatus NOT_MATCHED
Generated enum value forAvsStatus.NOT_MATCHEDvalue defined at extensionpayment.
-
NOT_SUPPORTED
public static final AvsStatus NOT_SUPPORTED
Generated enum value forAvsStatus.NOT_SUPPORTEDvalue defined at extensionpayment.
-
INVALID
public static final AvsStatus INVALID
Generated enum value forAvsStatus.INVALIDvalue defined at extensionpayment.
-
NO_RESULT
public static final AvsStatus NO_RESULT
Generated enum value forAvsStatus.NO_RESULTvalue defined at extensionpayment.
-
UNRECOGNIZED_RESULT
public static final AvsStatus UNRECOGNIZED_RESULT
Generated enum value forAvsStatus.UNRECOGNIZED_RESULTvalue defined at extensionpayment.
-
SYSTEM_UNAVAILABLE
public static final AvsStatus SYSTEM_UNAVAILABLE
Generated enum value forAvsStatus.SYSTEM_UNAVAILABLEvalue defined at extensionpayment.
-
-
Method Detail
-
values
public static AvsStatus[] 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 (AvsStatus c : AvsStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AvsStatus 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
-
-