net.adamcin.httpsig.api
Enum Algorithm

java.lang.Object
  extended by java.lang.Enum<Algorithm>
      extended by net.adamcin.httpsig.api.Algorithm
All Implemented Interfaces:
Serializable, Comparable<Algorithm>

public enum Algorithm
extends Enum<Algorithm>

Enumeration of supported HTTP Signature algorithms


Enum Constant Summary
DSA_SHA1
           
HMAC_SHA1
           
HMAC_SHA256
           
HMAC_SHA512
           
RSA_SHA1
           
RSA_SHA256
           
RSA_SHA512
           
SSH_DSS
           
SSH_RSA
           
 
Method Summary
static Algorithm forName(String name)
           
 String getName()
           
static Algorithm valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Algorithm[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.