public enum AudienceSegmentStatus extends Enum<AudienceSegmentStatus>
Java class for AudienceSegment.Status.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AudienceSegment.Status">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ACTIVE"/>
<enumeration value="INACTIVE"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE
Active status means this audience segment is available for targeting.
|
INACTIVE
Inactive status means this audience segment is not available for targeting.
|
| Modifier and Type | Method and Description |
|---|---|
static AudienceSegmentStatus |
fromValue(String v) |
String |
value() |
static AudienceSegmentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudienceSegmentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudienceSegmentStatus ACTIVE
public static final AudienceSegmentStatus INACTIVE
public static AudienceSegmentStatus[] values()
for (AudienceSegmentStatus c : AudienceSegmentStatus.values()) System.out.println(c);
public static AudienceSegmentStatus 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 nullpublic String value()
public static AudienceSegmentStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.