net.adamcin.httpsig.api
Enum Algorithm
java.lang.Object
java.lang.Enum<Algorithm>
net.adamcin.httpsig.api.Algorithm
- All Implemented Interfaces:
- Serializable, Comparable<Algorithm>
public enum Algorithm
- extends Enum<Algorithm>
Enumeration of supported HTTP Signature algorithms
RSA_SHA1
public static final Algorithm RSA_SHA1
RSA_SHA256
public static final Algorithm RSA_SHA256
RSA_SHA512
public static final Algorithm RSA_SHA512
DSA_SHA1
public static final Algorithm DSA_SHA1
HMAC_SHA1
public static final Algorithm HMAC_SHA1
HMAC_SHA256
public static final Algorithm HMAC_SHA256
HMAC_SHA512
public static final Algorithm HMAC_SHA512
SSH_RSA
public static final Algorithm SSH_RSA
SSH_DSS
public static final Algorithm SSH_DSS
values
public static Algorithm[] 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 (Algorithm c : Algorithm.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Algorithm 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 name
NullPointerException - if the argument is null
getName
public String getName()
forName
public static Algorithm forName(String name)
Copyright © 2013-2014. All Rights Reserved.