public enum ServedAssetFieldType extends Enum<ServedAssetFieldType>
Java class for ServedAssetFieldType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ServedAssetFieldType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="NONE"/>
<enumeration value="HEADLINE_1"/>
<enumeration value="HEADLINE_2"/>
<enumeration value="HEADLINE_3"/>
<enumeration value="DESCRIPTION_1"/>
<enumeration value="DESCRIPTION_2"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DESCRIPTION_1
The asset was used in description 1.
|
DESCRIPTION_2
The asset was used in description 2.
|
HEADLINE_1
The asset was used in headline 1.
|
HEADLINE_2
The asset was used in headline 2.
|
HEADLINE_3
The asset was used in headline 3.
|
NONE
The asset is not placed in a specific field.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static ServedAssetFieldType |
fromValue(String v) |
String |
value() |
static ServedAssetFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServedAssetFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServedAssetFieldType UNKNOWN
public static final ServedAssetFieldType NONE
public static final ServedAssetFieldType HEADLINE_1
public static final ServedAssetFieldType HEADLINE_2
public static final ServedAssetFieldType HEADLINE_3
public static final ServedAssetFieldType DESCRIPTION_1
public static final ServedAssetFieldType DESCRIPTION_2
public static ServedAssetFieldType[] values()
for (ServedAssetFieldType c : ServedAssetFieldType.values()) System.out.println(c);
public static ServedAssetFieldType 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 ServedAssetFieldType fromValue(String v)
Copyright © 2023. All rights reserved.