Enum SourceOfFunds.TypeEnum
- java.lang.Object
-
- java.lang.Enum<SourceOfFunds.TypeEnum>
-
- com.adyen.model.legalentitymanagement.SourceOfFunds.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SourceOfFunds.TypeEnum>
- Enclosing class:
- SourceOfFunds
public static enum SourceOfFunds.TypeEnum extends Enum<SourceOfFunds.TypeEnum>
The type of the source of funds. Possible values: * **business** * **employment** * **donations** * **inheritance** * **financialAid** * **rentalIncome** * **dividendIncome** * **royaltyIncome** * **thirdPartyFunding** * **pensionIncome** * **insuranceSettlement** * **cryptocurrencyIncome** * **assetSale** * **loans** * **gamblingWinnings**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSETSALEBUSINESSCRYPTOCURRENCYINCOMEDIVIDENDINCOMEDONATIONSEMPLOYMENTFINANCIALAIDGAMBLINGWINNINGSINHERITANCEINSURANCESETTLEMENTLOANSPENSIONINCOMERENTALINCOMEROYALTYINCOMETHIRDPARTYFUNDING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SourceOfFunds.TypeEnumfromValue(String value)StringgetValue()StringtoString()static SourceOfFunds.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SourceOfFunds.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUSINESS
public static final SourceOfFunds.TypeEnum BUSINESS
-
EMPLOYMENT
public static final SourceOfFunds.TypeEnum EMPLOYMENT
-
DONATIONS
public static final SourceOfFunds.TypeEnum DONATIONS
-
INHERITANCE
public static final SourceOfFunds.TypeEnum INHERITANCE
-
FINANCIALAID
public static final SourceOfFunds.TypeEnum FINANCIALAID
-
RENTALINCOME
public static final SourceOfFunds.TypeEnum RENTALINCOME
-
DIVIDENDINCOME
public static final SourceOfFunds.TypeEnum DIVIDENDINCOME
-
ROYALTYINCOME
public static final SourceOfFunds.TypeEnum ROYALTYINCOME
-
THIRDPARTYFUNDING
public static final SourceOfFunds.TypeEnum THIRDPARTYFUNDING
-
PENSIONINCOME
public static final SourceOfFunds.TypeEnum PENSIONINCOME
-
INSURANCESETTLEMENT
public static final SourceOfFunds.TypeEnum INSURANCESETTLEMENT
-
CRYPTOCURRENCYINCOME
public static final SourceOfFunds.TypeEnum CRYPTOCURRENCYINCOME
-
ASSETSALE
public static final SourceOfFunds.TypeEnum ASSETSALE
-
LOANS
public static final SourceOfFunds.TypeEnum LOANS
-
GAMBLINGWINNINGS
public static final SourceOfFunds.TypeEnum GAMBLINGWINNINGS
-
-
Method Detail
-
values
public static SourceOfFunds.TypeEnum[] 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 (SourceOfFunds.TypeEnum c : SourceOfFunds.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourceOfFunds.TypeEnum 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<SourceOfFunds.TypeEnum>
-
fromValue
public static SourceOfFunds.TypeEnum fromValue(String value)
-
-