public static enum ResourceModifiedResponse.Action extends Enum<ResourceModifiedResponse.Action>
Enum Constant and Description |
---|
CREATED
Resource is created
|
DELETED
Resource is updated
|
UPDATED
Resource is updated
|
Modifier and Type | Method and Description |
---|---|
static ResourceModifiedResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceModifiedResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceModifiedResponse.Action CREATED
public static final ResourceModifiedResponse.Action UPDATED
public static final ResourceModifiedResponse.Action DELETED
public static ResourceModifiedResponse.Action[] values()
for (ResourceModifiedResponse.Action c : ResourceModifiedResponse.Action.values()) System.out.println(c);
public static ResourceModifiedResponse.Action 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 © 2014–2018 Apache Software Foundation. All rights reserved.