@Unstable public enum PqcEnforcementPolicy extends Enum<PqcEnforcementPolicy>
| Enum Constant and Description |
|---|
CLIENT_NEGOTIATED
PQC is enforced on the server side but clients that do not support PQC are tolerated.
|
RELAXED
No PQC enforcement.
|
STRICT
PQC is strictly enforced.
|
| Modifier and Type | Method and Description |
|---|---|
static PqcEnforcementPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PqcEnforcementPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PqcEnforcementPolicy RELAXED
public static final PqcEnforcementPolicy CLIENT_NEGOTIATED
public static final PqcEnforcementPolicy STRICT
public static PqcEnforcementPolicy[] values()
for (PqcEnforcementPolicy c : PqcEnforcementPolicy.values()) System.out.println(c);
public static PqcEnforcementPolicy 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 © 2026 Eclipse. All rights reserved.