Package unit.java.sdk.model
Enum ThreadBusinessSourceOfFunds
- java.lang.Object
-
- java.lang.Enum<ThreadBusinessSourceOfFunds>
-
- unit.java.sdk.model.ThreadBusinessSourceOfFunds
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ThreadBusinessSourceOfFunds>
public enum ThreadBusinessSourceOfFunds extends java.lang.Enum<ThreadBusinessSourceOfFunds>
Gets or Sets ThreadBusinessSourceOfFunds
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreadBusinessSourceOfFundsfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()java.lang.StringtoUrlQueryString(java.lang.String prefix)Convert the instance into URL query string.static ThreadBusinessSourceOfFundsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ThreadBusinessSourceOfFunds[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SALES_OF_GOODS
public static final ThreadBusinessSourceOfFunds SALES_OF_GOODS
-
SALES_OF_SERVICES
public static final ThreadBusinessSourceOfFunds SALES_OF_SERVICES
-
CUSTOMER_PAYMENTS
public static final ThreadBusinessSourceOfFunds CUSTOMER_PAYMENTS
-
INVESTMENT_CAPITAL
public static final ThreadBusinessSourceOfFunds INVESTMENT_CAPITAL
-
BUSINESS_LOANS
public static final ThreadBusinessSourceOfFunds BUSINESS_LOANS
-
OWNER_CONTRIBUTIONS
public static final ThreadBusinessSourceOfFunds OWNER_CONTRIBUTIONS
-
FRANCHISE_REVENUE
public static final ThreadBusinessSourceOfFunds FRANCHISE_REVENUE
-
RENTAL_INCOME
public static final ThreadBusinessSourceOfFunds RENTAL_INCOME
-
GOVERNMENT_CONTRACTS_OR_GRANTS
public static final ThreadBusinessSourceOfFunds GOVERNMENT_CONTRACTS_OR_GRANTS
-
DONATIONS_OR_FUNDRAISING
public static final ThreadBusinessSourceOfFunds DONATIONS_OR_FUNDRAISING
-
MEMBERSHIP_FEES_OR_SUBSCRIPTIONS
public static final ThreadBusinessSourceOfFunds MEMBERSHIP_FEES_OR_SUBSCRIPTIONS
-
LICENSING_OR_ROYALTIES
public static final ThreadBusinessSourceOfFunds LICENSING_OR_ROYALTIES
-
COMMISSION_INCOME
public static final ThreadBusinessSourceOfFunds COMMISSION_INCOME
-
IMPORT_EXPORT_REVENUE
public static final ThreadBusinessSourceOfFunds IMPORT_EXPORT_REVENUE
-
CRYPTOCURRENCY_RELATED_ACTIVITY
public static final ThreadBusinessSourceOfFunds CRYPTOCURRENCY_RELATED_ACTIVITY
-
-
Method Detail
-
values
public static ThreadBusinessSourceOfFunds[] 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 (ThreadBusinessSourceOfFunds c : ThreadBusinessSourceOfFunds.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreadBusinessSourceOfFunds 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ThreadBusinessSourceOfFunds>
-
fromValue
public static ThreadBusinessSourceOfFunds fromValue(java.lang.String value)
-
toUrlQueryString
public java.lang.String toUrlQueryString(java.lang.String prefix)
Convert the instance into URL query string.- Parameters:
prefix- prefix of the query string- Returns:
- URL query string
-
-