public enum ChecksumType extends Enum<ChecksumType>
| Enum Constant and Description |
|---|
ADDITIONAL_SHA1 |
MD5 |
SHA1 |
SHA1_NO_COMMENTS |
SHA1_NO_COMMENTS_SUPER_HASH |
SHA1_NO_HEADER |
SHA1_NO_HEADER_SUPER_HASH |
SHA1_OTHER_PLATFORM |
SHA1_SUPER_HASH |
SHA1_SUPER_HASH_LSB |
SHA1_SUPER_HASH_MSB |
SHA1_UTF8 |
SHA256 |
| Modifier and Type | Method and Description |
|---|---|
static ChecksumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecksumType SHA1
public static final ChecksumType SHA256
public static final ChecksumType SHA1_SUPER_HASH
public static final ChecksumType SHA1_SUPER_HASH_MSB
public static final ChecksumType SHA1_SUPER_HASH_LSB
public static final ChecksumType SHA1_NO_HEADER
public static final ChecksumType SHA1_NO_HEADER_SUPER_HASH
public static final ChecksumType SHA1_NO_COMMENTS
public static final ChecksumType SHA1_NO_COMMENTS_SUPER_HASH
public static final ChecksumType SHA1_OTHER_PLATFORM
public static final ChecksumType SHA1_UTF8
public static final ChecksumType MD5
public static final ChecksumType ADDITIONAL_SHA1
public static ChecksumType[] values()
for (ChecksumType c : ChecksumType.values()) System.out.println(c);
public static ChecksumType 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 © 2011-2024 White Source. All Rights Reserved.