Package com.flagright.api.types
Enum SourceOfFunds
- java.lang.Object
-
- java.lang.Enum<SourceOfFunds>
-
- com.flagright.api.types.SourceOfFunds
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SourceOfFunds>
public enum SourceOfFunds extends java.lang.Enum<SourceOfFunds>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BENEFITSBUSINESSCOMPANY_EXITCRYPTOEARNINGSEMPLOYMENTEQUITYFAMILYGAMBLINGGIFTINHERITANCEINSURANCEINVESTMENTS_DEPOSITSLEGALPASSIVEPENSIONREAL_ESTATE_RENTALREAL_ESTATE_SALEROLLOVERSALARYSALESSAVINGSWEALTH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static SourceOfFundsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SourceOfFunds[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EARNINGS
public static final SourceOfFunds EARNINGS
-
SAVINGS
public static final SourceOfFunds SAVINGS
-
INVESTMENTS_DEPOSITS
public static final SourceOfFunds INVESTMENTS_DEPOSITS
-
WEALTH
public static final SourceOfFunds WEALTH
-
GIFT
public static final SourceOfFunds GIFT
-
PENSION
public static final SourceOfFunds PENSION
-
INHERITANCE
public static final SourceOfFunds INHERITANCE
-
GAMBLING
public static final SourceOfFunds GAMBLING
-
BENEFITS
public static final SourceOfFunds BENEFITS
-
PASSIVE
public static final SourceOfFunds PASSIVE
-
FAMILY
public static final SourceOfFunds FAMILY
-
INSURANCE
public static final SourceOfFunds INSURANCE
-
LEGAL
public static final SourceOfFunds LEGAL
-
SALES
public static final SourceOfFunds SALES
-
ROLLOVER
public static final SourceOfFunds ROLLOVER
-
EQUITY
public static final SourceOfFunds EQUITY
-
CRYPTO
public static final SourceOfFunds CRYPTO
-
BUSINESS
public static final SourceOfFunds BUSINESS
-
EMPLOYMENT
public static final SourceOfFunds EMPLOYMENT
-
SALARY
public static final SourceOfFunds SALARY
-
REAL_ESTATE_SALE
public static final SourceOfFunds REAL_ESTATE_SALE
-
REAL_ESTATE_RENTAL
public static final SourceOfFunds REAL_ESTATE_RENTAL
-
COMPANY_EXIT
public static final SourceOfFunds COMPANY_EXIT
-
-
Method Detail
-
values
public static SourceOfFunds[] 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 c : SourceOfFunds.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 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<SourceOfFunds>
-
-