Package nl.sidnlabs.dnslib.types
Enum AlgorithmType
- java.lang.Object
-
- java.lang.Enum<AlgorithmType>
-
- nl.sidnlabs.dnslib.types.AlgorithmType
-
- All Implemented Interfaces:
Serializable,Comparable<AlgorithmType>
public enum AlgorithmType extends Enum<AlgorithmType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DHDSASHA1ECCINDIRECTPRIVATEDNSPRIVATEOIDRSAMD5RSASHA1RSASHA1_NSEC3_SHA1RSASHA256
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlgorithmTypefromValue(short value)StringgetAlgorithm()bytegetValue()static AlgorithmTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AlgorithmType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RSAMD5
public static final AlgorithmType RSAMD5
-
DH
public static final AlgorithmType DH
-
DSASHA1
public static final AlgorithmType DSASHA1
-
ECC
public static final AlgorithmType ECC
-
RSASHA1
public static final AlgorithmType RSASHA1
-
RSASHA1_NSEC3_SHA1
public static final AlgorithmType RSASHA1_NSEC3_SHA1
-
RSASHA256
public static final AlgorithmType RSASHA256
-
INDIRECT
public static final AlgorithmType INDIRECT
-
PRIVATEDNS
public static final AlgorithmType PRIVATEDNS
-
PRIVATEOID
public static final AlgorithmType PRIVATEOID
-
-
Method Detail
-
values
public static AlgorithmType[] 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 (AlgorithmType c : AlgorithmType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlgorithmType 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 nameNullPointerException- if the argument is null
-
getValue
public byte getValue()
-
fromValue
public static AlgorithmType fromValue(short value)
-
getAlgorithm
public String getAlgorithm()
-
-