Enum OriginalDataStorageFormat
- java.lang.Object
-
- java.lang.Enum<OriginalDataStorageFormat>
-
- ch.systemsx.cisd.openbis.dss.etl.dto.api.OriginalDataStorageFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OriginalDataStorageFormat>
public enum OriginalDataStorageFormat extends java.lang.Enum<OriginalDataStorageFormat>
How original dataset data should be stored.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HDF5
original data are stored in one HDF5 container (uncompressed)HDF5_COMPRESSED
original data are stored in one HDF5 container (compressed)UNCHANGED
original data are stored as they come (without additional compression)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isHdf5()
static OriginalDataStorageFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OriginalDataStorageFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCHANGED
public static final OriginalDataStorageFormat UNCHANGED
original data are stored as they come (without additional compression)
-
HDF5
public static final OriginalDataStorageFormat HDF5
original data are stored in one HDF5 container (uncompressed)
-
HDF5_COMPRESSED
public static final OriginalDataStorageFormat HDF5_COMPRESSED
original data are stored in one HDF5 container (compressed)
-
-
Method Detail
-
values
public static OriginalDataStorageFormat[] 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 (OriginalDataStorageFormat c : OriginalDataStorageFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OriginalDataStorageFormat 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
-
isHdf5
public boolean isHdf5()
-
-