public static enum Types.transferType extends Enum<Types.transferType> implements Serializable
Enum Constant and Description |
---|
FileBasedTransfer |
LocalFileBasedTransfer |
TreeBasedTransfer |
Modifier and Type | Method and Description |
---|---|
static Types.transferType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.transferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.transferType TreeBasedTransfer
public static final Types.transferType FileBasedTransfer
public static final Types.transferType LocalFileBasedTransfer
public static Types.transferType[] values()
for (Types.transferType c : Types.transferType.values()) System.out.println(c);
public static Types.transferType 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 © 2014. All Rights Reserved.