public enum TransferMode extends Enum<TransferMode>
| Enum Constant and Description |
|---|
ERROR |
FORGET |
FORWARD |
ORCHESTRATE |
| Modifier and Type | Method and Description |
|---|---|
static TransferMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferMode FORWARD
public static final TransferMode FORGET
public static final TransferMode ERROR
public static final TransferMode ORCHESTRATE
public static TransferMode[] values()
for (TransferMode c : TransferMode.values()) System.out.println(c);
public static TransferMode 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 The CLARUS Consortium. All rights reserved.