public enum FileHashType extends java.lang.Enum<FileHashType>
| Enum Constant and Description |
|---|
AUTHENTICODE_HASH256
authenticode Hash256
|
CTPH
ctph
|
LS_HASH
ls Hash
|
MD5
md5
|
SHA1
sha1
|
SHA256
sha256
|
UNEXPECTED_VALUE
For FileHashType values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static FileHashType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileHashType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileHashType UNKNOWN
public static final FileHashType SHA1
public static final FileHashType SHA256
public static final FileHashType MD5
public static final FileHashType AUTHENTICODE_HASH256
public static final FileHashType LS_HASH
public static final FileHashType CTPH
public static final FileHashType UNKNOWN_FUTURE_VALUE
public static final FileHashType UNEXPECTED_VALUE
public static FileHashType[] values()
for (FileHashType c : FileHashType.values()) System.out.println(c);
public static FileHashType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null