public enum PairingTypes extends Enum<PairingTypes>
Enum Constant and Description |
---|
TYPE_2
Asymmetric bilinear group equipped with a pairing and an isomorphism from
group 2 to group 1.
|
TYPE_3
Asymmetric bilinear group equipped with a pairing.
|
Modifier and Type | Method and Description |
---|---|
static PairingTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PairingTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PairingTypes TYPE_2
public static final PairingTypes TYPE_3
public static PairingTypes[] values()
for (PairingTypes c : PairingTypes.values()) System.out.println(c);
public static PairingTypes 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 nullCopyright © 2011–2022 Stiftung SIC. All rights reserved.