public enum Primitive extends Enum<Primitive>
Enum Constant and Description |
---|
AE |
BLOCK_CIPHER |
COMBINER |
DRBG |
HASH |
KDF |
KEM |
KEY_AGREE |
MAC |
OTHER |
PKE |
SIGNATURE |
STREAM_CIPHER |
UNKNOWN |
XOF |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static Primitive |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Primitive[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Primitive DRBG
public static final Primitive MAC
public static final Primitive BLOCK_CIPHER
public static final Primitive STREAM_CIPHER
public static final Primitive SIGNATURE
public static final Primitive HASH
public static final Primitive PKE
public static final Primitive XOF
public static final Primitive KDF
public static final Primitive KEY_AGREE
public static final Primitive KEM
public static final Primitive AE
public static final Primitive COMBINER
public static final Primitive OTHER
public static final Primitive UNKNOWN
public static Primitive[] values()
for (Primitive c : Primitive.values()) System.out.println(c);
public static Primitive 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 String getName()
Copyright © 2017–2025 OWASP Foundation. All rights reserved.