@Title(value="Persister") public enum PersisterConf extends Enum<PersisterConf>
| Enum Constant and Description |
|---|
EXCEPTION |
HANDLER |
PAYLOAD |
RECEIPT |
| Modifier and Type | Method and Description |
|---|---|
static PersisterConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersisterConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.persister.payload") @DefaultValue(value="default") public static final PersisterConf PAYLOAD
@Path(value="oxalis.persister.receipt") @DefaultValue(value="default") public static final PersisterConf RECEIPT
@Path(value="oxalis.persister.exception") @DefaultValue(value="default") public static final PersisterConf EXCEPTION
@Path(value="oxalis.persister.handler") @DefaultValue(value="default") public static final PersisterConf HANDLER
public static PersisterConf[] values()
for (PersisterConf c : PersisterConf.values()) System.out.println(c);
public static PersisterConf 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 © 2023 NorStella. All rights reserved.