public enum ForwardCompatibilityErrorReason extends Enum<ForwardCompatibilityErrorReason>
Java class for ForwardCompatibilityError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ForwardCompatibilityError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="INVALID_FORWARD_COMPATIBILITY_MAP_VALUE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INVALID_FORWARD_COMPATIBILITY_MAP_VALUE
Invalid value specified for a key in the forward compatibility map.
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ForwardCompatibilityErrorReason |
fromValue(String v) |
String |
value() |
static ForwardCompatibilityErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForwardCompatibilityErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForwardCompatibilityErrorReason INVALID_FORWARD_COMPATIBILITY_MAP_VALUE
public static final ForwardCompatibilityErrorReason UNKNOWN
public static ForwardCompatibilityErrorReason[] values()
for (ForwardCompatibilityErrorReason c : ForwardCompatibilityErrorReason.values()) System.out.println(c);
public static ForwardCompatibilityErrorReason 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 ForwardCompatibilityErrorReason fromValue(String v)
Copyright © 2023. All rights reserved.