Enum DataSetType
- java.lang.Object
-
- java.lang.Enum<DataSetType>
-
- software.amazon.awssdk.services.marketplacecommerceanalytics.model.DataSetType
-
- All Implemented Interfaces:
Serializable,Comparable<DataSetType>
@Generated("software.amazon.awssdk:codegen") 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 DataSetTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DataSetType>knownValues()StringtoString()static DataSetTypevalueOf(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
-
MONTHLY_REVENUE_FIELD_DEMONSTRATION_USAGE
public static final DataSetType MONTHLY_REVENUE_FIELD_DEMONSTRATION_USAGE
-
MONTHLY_REVENUE_FLEXIBLE_PAYMENT_SCHEDULE
public static final DataSetType MONTHLY_REVENUE_FLEXIBLE_PAYMENT_SCHEDULE
-
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_INSTANCE_HOURS
public static final DataSetType DISBURSED_AMOUNT_BY_INSTANCE_HOURS
-
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
-
DISBURSED_AMOUNT_BY_AGE_OF_PAST_DUE_FUNDS
public static final DataSetType DISBURSED_AMOUNT_BY_AGE_OF_PAST_DUE_FUNDS
-
DISBURSED_AMOUNT_BY_UNCOLLECTED_FUNDS_BREAKDOWN
public static final DataSetType DISBURSED_AMOUNT_BY_UNCOLLECTED_FUNDS_BREAKDOWN
-
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
-
SALES_COMPENSATION_BILLED_REVENUE
public static final DataSetType SALES_COMPENSATION_BILLED_REVENUE
-
US_SALES_AND_USE_TAX_RECORDS
public static final DataSetType US_SALES_AND_USE_TAX_RECORDS
-
UNKNOWN_TO_SDK_VERSION
public static final DataSetType UNKNOWN_TO_SDK_VERSION
-
-
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:
toStringin classEnum<DataSetType>
-
fromValue
public static DataSetType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- DataSetType corresponding to the value
-
knownValues
public static Set<DataSetType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownDataSetTypes
-
-