public enum FeedAttributeReferenceErrorReason extends Enum<FeedAttributeReferenceErrorReason>
Java class for FeedAttributeReferenceError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FeedAttributeReferenceError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CANNOT_REFERENCE_DELETED_FEED"/>
<enumeration value="INVALID_FEED_NAME"/>
<enumeration value="INVALID_FEED_ATTRIBUTE_NAME"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANNOT_REFERENCE_DELETED_FEED
A feed referenced by ID has been deleted.
|
INVALID_FEED_ATTRIBUTE_NAME
There is no feed attribute in an active feed with the given name.
|
INVALID_FEED_NAME
There is no active feed with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
static FeedAttributeReferenceErrorReason |
fromValue(String v) |
String |
value() |
static FeedAttributeReferenceErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeedAttributeReferenceErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedAttributeReferenceErrorReason CANNOT_REFERENCE_DELETED_FEED
public static final FeedAttributeReferenceErrorReason INVALID_FEED_NAME
public static final FeedAttributeReferenceErrorReason INVALID_FEED_ATTRIBUTE_NAME
public static FeedAttributeReferenceErrorReason[] values()
for (FeedAttributeReferenceErrorReason c : FeedAttributeReferenceErrorReason.values()) System.out.println(c);
public static FeedAttributeReferenceErrorReason 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 FeedAttributeReferenceErrorReason fromValue(String v)
Copyright © 2023. All rights reserved.