Enum TransactionStatusTO
- java.lang.Object
-
- java.lang.Enum<TransactionStatusTO>
-
- de.adorsys.ledgers.middleware.api.domain.payment.TransactionStatusTO
-
- All Implemented Interfaces:
Serializable,Comparable<TransactionStatusTO>
public enum TransactionStatusTO extends Enum<TransactionStatusTO>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()static TransactionStatusTOvalueOf(String name)Returns the enum constant of this type with the specified name.static TransactionStatusTO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCC
public static final TransactionStatusTO ACCC
-
ACCP
public static final TransactionStatusTO ACCP
-
ACSC
public static final TransactionStatusTO ACSC
-
ACSP
public static final TransactionStatusTO ACSP
-
ACTC
public static final TransactionStatusTO ACTC
-
ACWC
public static final TransactionStatusTO ACWC
-
ACWP
public static final TransactionStatusTO ACWP
-
RCVD
public static final TransactionStatusTO RCVD
-
PDNG
public static final TransactionStatusTO PDNG
-
RJCT
public static final TransactionStatusTO RJCT
-
CANC
public static final TransactionStatusTO CANC
-
ACFC
public static final TransactionStatusTO ACFC
-
PATC
public static final TransactionStatusTO PATC
-
-
Method Detail
-
values
public static TransactionStatusTO[] 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 (TransactionStatusTO c : TransactionStatusTO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransactionStatusTO 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
-
getName
public String getName()
-
-