public enum ContentFilterErrorReason extends Enum<ContentFilterErrorReason>
Java class for ContentFilterError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ContentFilterError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="WRONG_NUMBER_OF_ARGUMENTS"/>
<enumeration value="ANY_FILTER_NOT_SUPPORTED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANY_FILTER_NOT_SUPPORTED |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
WRONG_NUMBER_OF_ARGUMENTS |
| Modifier and Type | Method and Description |
|---|---|
static ContentFilterErrorReason |
fromValue(String v) |
String |
value() |
static ContentFilterErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentFilterErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentFilterErrorReason UNKNOWN
public static final ContentFilterErrorReason WRONG_NUMBER_OF_ARGUMENTS
public static final ContentFilterErrorReason ANY_FILTER_NOT_SUPPORTED
public static ContentFilterErrorReason[] values()
for (ContentFilterErrorReason c : ContentFilterErrorReason.values()) System.out.println(c);
public static ContentFilterErrorReason 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 ContentFilterErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.