Enum ETagAlgorithm
- java.lang.Object
-
- java.lang.Enum<ETagAlgorithm>
-
- software.amazon.awssdk.services.omics.model.ETagAlgorithm
-
- All Implemented Interfaces:
Serializable,Comparable<ETagAlgorithm>
@Generated("software.amazon.awssdk:codegen") public enum ETagAlgorithm extends Enum<ETagAlgorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BAM_MD5_UPBAM_SHA256_UPBAM_SHA512_UPCRAM_MD5_UPCRAM_SHA256_UPCRAM_SHA512_UPFASTQ_MD5_UPFASTQ_SHA256_UPFASTQ_SHA512_UPUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ETagAlgorithmfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ETagAlgorithm>knownValues()StringtoString()static ETagAlgorithmvalueOf(String name)Returns the enum constant of this type with the specified name.static ETagAlgorithm[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FASTQ_MD5_UP
public static final ETagAlgorithm FASTQ_MD5_UP
-
BAM_MD5_UP
public static final ETagAlgorithm BAM_MD5_UP
-
CRAM_MD5_UP
public static final ETagAlgorithm CRAM_MD5_UP
-
FASTQ_SHA256_UP
public static final ETagAlgorithm FASTQ_SHA256_UP
-
BAM_SHA256_UP
public static final ETagAlgorithm BAM_SHA256_UP
-
CRAM_SHA256_UP
public static final ETagAlgorithm CRAM_SHA256_UP
-
FASTQ_SHA512_UP
public static final ETagAlgorithm FASTQ_SHA512_UP
-
BAM_SHA512_UP
public static final ETagAlgorithm BAM_SHA512_UP
-
CRAM_SHA512_UP
public static final ETagAlgorithm CRAM_SHA512_UP
-
UNKNOWN_TO_SDK_VERSION
public static final ETagAlgorithm UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ETagAlgorithm[] 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 (ETagAlgorithm c : ETagAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ETagAlgorithm valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<ETagAlgorithm>
-
fromValue
public static ETagAlgorithm fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ETagAlgorithm corresponding to the value
-
knownValues
public static Set<ETagAlgorithm> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownETagAlgorithms
-
-