public enum MD5Method extends Enum<MD5Method>
| Enum Constant and Description |
|---|
MD5_CONTENTS
Calculate MD5 of the whole tune contents (since HVSC#68)
|
MD5_PSID_HEADER
Calculate MD5 of the SID tune according to the header information (used until
HVSC#67)
|
| Modifier and Type | Method and Description |
|---|---|
static MD5Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MD5Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MD5Method MD5_PSID_HEADER
public static final MD5Method MD5_CONTENTS
public static MD5Method[] values()
for (MD5Method c : MD5Method.values()) System.out.println(c);
public static MD5Method 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 © 2018 Ken Händel. All rights reserved.