public static enum DeletedEntity.Reason extends Enum<DeletedEntity.Reason>
Enum Constant and Description |
---|
changed
The data of the entity has changed and is not any longer part of the response.
|
deleted
The entity was deleted.
|
Modifier and Type | Method and Description |
---|---|
static DeletedEntity.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeletedEntity.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeletedEntity.Reason deleted
public static final DeletedEntity.Reason changed
public static DeletedEntity.Reason[] values()
for (DeletedEntity.Reason c : DeletedEntity.Reason.values()) System.out.println(c);
public static DeletedEntity.Reason 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 nullCopyright © 2013–2018 The Apache Software Foundation. All rights reserved.