Package model
Enum ProcessorSystemConfig.SourceOfFundsEnum
- java.lang.Object
-
- java.lang.Enum<ProcessorSystemConfig.SourceOfFundsEnum>
-
- model.ProcessorSystemConfig.SourceOfFundsEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessorSystemConfig.SourceOfFundsEnum>
- Enclosing class:
- ProcessorSystemConfig
public static enum ProcessorSystemConfig.SourceOfFundsEnum extends Enum<ProcessorSystemConfig.SourceOfFundsEnum>
Specific code that reflects the use case (e.g. funds disbursement, money transfer, etc.). For a full list of codes, see the following [list from Visa](https://developer.visa.com/request_response_codes#source_of_funds).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProcessorSystemConfig.SourceOfFundsEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProcessorSystemConfig.SourceOfFundsEnumfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static ProcessorSystemConfig.SourceOfFundsEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessorSystemConfig.SourceOfFundsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final ProcessorSystemConfig.SourceOfFundsEnum _01
-
_02
public static final ProcessorSystemConfig.SourceOfFundsEnum _02
-
_03
public static final ProcessorSystemConfig.SourceOfFundsEnum _03
-
_04
public static final ProcessorSystemConfig.SourceOfFundsEnum _04
-
_05
public static final ProcessorSystemConfig.SourceOfFundsEnum _05
-
_06
public static final ProcessorSystemConfig.SourceOfFundsEnum _06
-
UNKNOWN_DEFAULT
public static final ProcessorSystemConfig.SourceOfFundsEnum UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static ProcessorSystemConfig.SourceOfFundsEnum[] 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 (ProcessorSystemConfig.SourceOfFundsEnum c : ProcessorSystemConfig.SourceOfFundsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessorSystemConfig.SourceOfFundsEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ProcessorSystemConfig.SourceOfFundsEnum>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static ProcessorSystemConfig.SourceOfFundsEnum fromValue(String value)
-
-