public enum ExProgressCampaignStatus extends Enum<ExProgressCampaignStatus>
| Enum Constant and Description |
|---|
CAMPAIGN_ALL |
CAMPAIGN_OVER |
CAMPAIGN_RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static ExProgressCampaignStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExProgressCampaignStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExProgressCampaignStatus CAMPAIGN_RUNNING
public static final ExProgressCampaignStatus CAMPAIGN_OVER
public static final ExProgressCampaignStatus CAMPAIGN_ALL
public static ExProgressCampaignStatus[] values()
for (ExProgressCampaignStatus c : ExProgressCampaignStatus.values()) System.out.println(c);
public static ExProgressCampaignStatus 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 © 2010–2016 Henix, henix.fr. All rights reserved.