public static enum MarshallingRequest.Mode extends Enum<MarshallingRequest.Mode>
ERROR: - return errors when it has unsupported nodes - return ERROR messages AUTO: - try to adapt and convert unsupported nodes to generic ones - return warn messages - ignore unsupported nodes that doesn't have options to be converted IGNORE: - remove all unsupported nodes and relationships to them - warn messages
| Modifier and Type | Method and Description |
|---|---|
static MarshallingRequest.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarshallingRequest.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarshallingRequest.Mode ERROR
public static final MarshallingRequest.Mode AUTO
public static final MarshallingRequest.Mode IGNORE
public static MarshallingRequest.Mode[] values()
for (MarshallingRequest.Mode c : MarshallingRequest.Mode.values()) System.out.println(c);
public static MarshallingRequest.Mode 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 © 2001–2021 JBoss by Red Hat. All rights reserved.