Interface TransactionState
- All Superinterfaces:
JsonEnum
- All Known Implementing Classes:
TransactionState.TransactionStateEnum
Transactions can be in one of the following States:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
possible values of TransactionState -
Field Summary
Modifier and TypeFieldDescriptionstatic final TransactionState
Transaction has unrecoverably failed.static final TransactionState
Initial State.static final TransactionState
The payment service has accepted the Transaction, but it is not completed yet.static final TransactionState
The payment service has confirmed the successful completion of the Transation. -
Method Summary
Modifier and TypeMethodDescriptionstatic TransactionState
factory method for a enum value of TransactionState if no enum has been found an anonymous instance will be createdstatic Optional<TransactionState>
findEnumViaJsonName
(String jsonName) method to find enum using the JSON valuethe JSON valuename()
the enum valuetoString()
convert value to stringstatic TransactionState[]
values()
possible enum values
-
Field Details
-
INITIAL
Initial State. The payment service has not accepted the Transaction yet.
-
PENDING
The payment service has accepted the Transaction, but it is not completed yet.
-
SUCCESS
The payment service has confirmed the successful completion of the Transation.
-
FAILURE
Transaction has unrecoverably failed.
-
-
Method Details
-
getJsonName
String getJsonName()the JSON value- Specified by:
getJsonName
in interfaceJsonEnum
- Returns:
- json value
-
name
String name()the enum value -
toString
String toString()convert value to string -
findEnum
factory method for a enum value of TransactionState if no enum has been found an anonymous instance will be created- Parameters:
value
- the enum value to be wrapped- Returns:
- enum instance
-
findEnumViaJsonName
method to find enum using the JSON value- Parameters:
jsonName
- the json value to be wrapped- Returns:
- optional of enum instance
-
values
possible enum values- Returns:
- array of possible enum values
-