public static enum EntityProcessor.Result extends Enum<EntityProcessor.Result>
Enum Constant and Description |
---|
APPLY
Processing of an context resulted in modification of the provided entity graph.
|
ROLLBACK
Rollback every entity graph modification done in current context.
|
SKIP
Entity processor didn't modify the provided entity graph.
|
Modifier and Type | Method and Description |
---|---|
static EntityProcessor.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityProcessor.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityProcessor.Result APPLY
public static final EntityProcessor.Result SKIP
public static final EntityProcessor.Result ROLLBACK
public static EntityProcessor.Result[] values()
for (EntityProcessor.Result c : EntityProcessor.Result.values()) System.out.println(c);
public static EntityProcessor.Result 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 © 2007-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.