public enum SigContext extends Enum<SigContext>
Modifier and Type | Class and Description |
---|---|
static class |
SigContext.SigContextSpec
The AlgorithmParameterSpec.
|
Enum Constant and Description |
---|
SC_DATAGRAM |
SC_I2CP |
SC_NETDB |
SC_NONE |
SC_NTCP |
SC_SSU |
SC_STREAMING |
SC_SU3 |
SC_TEST |
Modifier and Type | Method and Description |
---|---|
SigContext.SigContextSpec |
getSpec()
The AlgorithmParameterSpec.
|
static SigContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SigContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigContext SC_NONE
public static final SigContext SC_DATAGRAM
public static final SigContext SC_I2CP
public static final SigContext SC_NETDB
public static final SigContext SC_NTCP
public static final SigContext SC_SSU
public static final SigContext SC_STREAMING
public static final SigContext SC_SU3
public static final SigContext SC_TEST
public static SigContext[] values()
for (SigContext c : SigContext.values()) System.out.println(c);
public static SigContext 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 SigContext.SigContextSpec getSpec()