public enum SerializationMode extends Enum<SerializationMode>
| Enum Constant and Description |
|---|
NONE |
SERIALIZABLE |
SERIALIZED |
STATELESS |
| Modifier and Type | Method and Description |
|---|---|
static SerializationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerializationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerializationMode SERIALIZED
public static final SerializationMode SERIALIZABLE
public static final SerializationMode STATELESS
public static final SerializationMode NONE
public static SerializationMode[] values()
for (SerializationMode c : SerializationMode.values()) System.out.println(c);
public static SerializationMode 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 © 2017 JBoss by Red Hat. All Rights Reserved.