Enum FastDownloadParameter
- java.lang.Object
-
- java.lang.Enum<FastDownloadParameter>
-
- ch.ethz.sis.openbis.generic.dssapi.v3.dto.datasetfile.fastdownload.FastDownloadParameter
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FastDownloadParameter>
public enum FastDownloadParameter extends java.lang.Enum<FastDownloadParameter>
Names of parameters needed for remote access ofIDownloadServer
:
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getParameterName()
static FastDownloadParameter
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static FastDownloadParameter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METHOD_PARAMETER
public static final FastDownloadParameter METHOD_PARAMETER
-
RANGES_PARAMETER
public static final FastDownloadParameter RANGES_PARAMETER
-
DOWNLOAD_ITEM_IDS_PARAMETER
public static final FastDownloadParameter DOWNLOAD_ITEM_IDS_PARAMETER
-
NUMBER_OF_CHUNKS_PARAMETER
public static final FastDownloadParameter NUMBER_OF_CHUNKS_PARAMETER
-
WISHED_NUMBER_OF_STREAMS_PARAMETER
public static final FastDownloadParameter WISHED_NUMBER_OF_STREAMS_PARAMETER
-
DOWNLOAD_STREAM_ID_PARAMETER
public static final FastDownloadParameter DOWNLOAD_STREAM_ID_PARAMETER
-
DOWNLOAD_SESSION_ID_PARAMETER
public static final FastDownloadParameter DOWNLOAD_SESSION_ID_PARAMETER
-
USER_SESSION_ID_PARAMETER
public static final FastDownloadParameter USER_SESSION_ID_PARAMETER
-
-
Method Detail
-
values
public static FastDownloadParameter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FastDownloadParameter c : FastDownloadParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FastDownloadParameter valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getParameterName
public java.lang.String getParameterName()
-
-