public enum EntityNotFoundReason extends Enum<EntityNotFoundReason>
Java class for EntityNotFound.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EntityNotFound.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="INVALID_ID"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INVALID_ID
The specified id refered to an entity which either doesn't exist or is not accessible to the
customer.
|
| Modifier and Type | Method and Description |
|---|---|
static EntityNotFoundReason |
fromValue(String v) |
String |
value() |
static EntityNotFoundReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityNotFoundReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityNotFoundReason INVALID_ID
public static EntityNotFoundReason[] values()
for (EntityNotFoundReason c : EntityNotFoundReason.values()) System.out.println(c);
public static EntityNotFoundReason 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 EntityNotFoundReason fromValue(String v)
Copyright © 2023. All rights reserved.