public enum ExtractMode extends Enum<ExtractMode>
Enum Constant and Description |
---|
FTP_UPLOAD |
HTTP_DOWNLOAD |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static ExtractMode |
fromValue(String format) |
static ExtractMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractMode HTTP_DOWNLOAD
public static final ExtractMode FTP_UPLOAD
public static final ExtractMode UNRECOGNIZED
public static ExtractMode[] values()
for (ExtractMode c : ExtractMode.values()) System.out.println(c);
public static ExtractMode 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 nullpublic static ExtractMode fromValue(String format)
Copyright © 2009-2012 jclouds. All Rights Reserved.