public static enum SimplePropertyFileUserVerifier.Hash extends Enum<SimplePropertyFileUserVerifier.Hash>
| Enum Constant and Description |
|---|
MD5 |
NONE
NONE - no hash, MD5 - md5 hash, SHA1 - sha1 hash.
|
SHA1 |
| Modifier and Type | Method and Description |
|---|---|
static SimplePropertyFileUserVerifier.Hash |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimplePropertyFileUserVerifier.Hash[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimplePropertyFileUserVerifier.Hash NONE
public static final SimplePropertyFileUserVerifier.Hash MD5
public static final SimplePropertyFileUserVerifier.Hash SHA1
public static SimplePropertyFileUserVerifier.Hash[] values()
for (SimplePropertyFileUserVerifier.Hash c : SimplePropertyFileUserVerifier.Hash.values()) System.out.println(c);
public static SimplePropertyFileUserVerifier.Hash 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 © 2017. All rights reserved.