public static enum Item.UsageCalculation extends Enum<Item.UsageCalculation>
| Enum Constant and Description |
|---|
_UNKNOWN |
LAST_USAGE |
MAX_USAGE |
SUM_OF_USAGES |
| Modifier and Type | Method and Description |
|---|---|
static Item.UsageCalculation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Item.UsageCalculation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Item.UsageCalculation SUM_OF_USAGES
public static final Item.UsageCalculation LAST_USAGE
public static final Item.UsageCalculation MAX_USAGE
public static final Item.UsageCalculation _UNKNOWN
public static Item.UsageCalculation[] values()
for (Item.UsageCalculation c : Item.UsageCalculation.values()) System.out.println(c);
public static Item.UsageCalculation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 ChargeBee. All rights reserved.