Enum DataSetType
- java.lang.Object
-
- java.lang.Enum<DataSetType>
-
- com.amazonaws.services.marketplacecommerceanalytics.model.DataSetType
-
- All Implemented Interfaces:
Serializable
,Comparable<DataSetType>
public enum DataSetType extends Enum<DataSetType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataSetType
fromValue(String value)
Use this in place of valueOf.String
toString()
static DataSetType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataSetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Customer_subscriber_hourly_monthly_subscriptions
public static final DataSetType Customer_subscriber_hourly_monthly_subscriptions
-
Customer_subscriber_annual_subscriptions
public static final DataSetType Customer_subscriber_annual_subscriptions
-
Daily_business_usage_by_instance_type
public static final DataSetType Daily_business_usage_by_instance_type
-
Daily_business_fees
public static final DataSetType Daily_business_fees
-
Daily_business_free_trial_conversions
public static final DataSetType Daily_business_free_trial_conversions
-
Daily_business_new_instances
public static final DataSetType Daily_business_new_instances
-
Daily_business_new_product_subscribers
public static final DataSetType Daily_business_new_product_subscribers
-
Daily_business_canceled_product_subscribers
public static final DataSetType Daily_business_canceled_product_subscribers
-
Monthly_revenue_billing_and_revenue_data
public static final DataSetType Monthly_revenue_billing_and_revenue_data
-
Monthly_revenue_annual_subscriptions
public static final DataSetType Monthly_revenue_annual_subscriptions
-
Disbursed_amount_by_product
public static final DataSetType Disbursed_amount_by_product
-
Disbursed_amount_by_product_with_uncollected_funds
public static final DataSetType Disbursed_amount_by_product_with_uncollected_funds
-
Disbursed_amount_by_customer_geo
public static final DataSetType Disbursed_amount_by_customer_geo
-
Disbursed_amount_by_age_of_uncollected_funds
public static final DataSetType Disbursed_amount_by_age_of_uncollected_funds
-
Disbursed_amount_by_age_of_disbursed_funds
public static final DataSetType Disbursed_amount_by_age_of_disbursed_funds
-
Customer_profile_by_industry
public static final DataSetType Customer_profile_by_industry
-
Customer_profile_by_revenue
public static final DataSetType Customer_profile_by_revenue
-
Customer_profile_by_geography
public static final DataSetType Customer_profile_by_geography
-
-
Method Detail
-
values
public static DataSetType[] 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 (DataSetType c : DataSetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSetType 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<DataSetType>
-
fromValue
public static DataSetType fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- DataSetType corresponding to the value
-
-