public enum HeavyAdReason extends Enum<HeavyAdReason>
| Enum Constant and Description |
|---|
CPU_PEAK_LIMIT |
CPU_TOTAL_LIMIT |
NETWORK_TOTAL_LIMIT |
| Modifier and Type | Method and Description |
|---|---|
static HeavyAdReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeavyAdReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeavyAdReason NETWORK_TOTAL_LIMIT
public static final HeavyAdReason CPU_TOTAL_LIMIT
public static final HeavyAdReason CPU_PEAK_LIMIT
public static HeavyAdReason[] values()
for (HeavyAdReason c : HeavyAdReason.values()) System.out.println(c);
public static HeavyAdReason 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 © 2021 Kenan Klisura. All rights reserved.