public enum CrsAlgorithm extends Enum<CrsAlgorithm>
| Enum Constant and Description |
|---|
ArcFourVariant |
Null |
Salsa20 |
| Modifier and Type | Method and Description |
|---|---|
static int |
getIntValue(CrsAlgorithm algorithm) |
static CrsAlgorithm |
parseValue(int value) |
static CrsAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrsAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrsAlgorithm Null
public static final CrsAlgorithm ArcFourVariant
public static final CrsAlgorithm Salsa20
public static CrsAlgorithm[] values()
for (CrsAlgorithm c : CrsAlgorithm.values()) System.out.println(c);
public static CrsAlgorithm 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 nullpublic static CrsAlgorithm parseValue(int value)
public static int getIntValue(CrsAlgorithm algorithm)
Copyright © 2016. All rights reserved.