Enum Transaction.BridgingMessageExtensionVersion
- java.lang.Object
-
- java.lang.Enum<Transaction.BridgingMessageExtensionVersion>
-
- com.netcetera.threeds.sdk.api.transaction.Transaction.BridgingMessageExtensionVersion
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Transaction.BridgingMessageExtensionVersion>
- Enclosing interface:
- Transaction
public static enum Transaction.BridgingMessageExtensionVersion extends java.lang.Enum<Transaction.BridgingMessageExtensionVersion>
Represents the version of the Bridging Message Extension.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()static Transaction.BridgingMessageExtensionVersionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Transaction.BridgingMessageExtensionVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
V10
public static final Transaction.BridgingMessageExtensionVersion V10
Bridging Message Extension version 1.0
-
V20
public static final Transaction.BridgingMessageExtensionVersion V20
Bridging Message Extension version 1.0
-
-
Method Detail
-
values
public static Transaction.BridgingMessageExtensionVersion[] 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 (Transaction.BridgingMessageExtensionVersion c : Transaction.BridgingMessageExtensionVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Transaction.BridgingMessageExtensionVersion 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
-
getValue
public java.lang.String getValue()
-
-