public enum SecurityStatus extends Enum<SecurityStatus>
| Enum Constant and Description |
|---|
BOGUS
BOGUS means that the object (RRset or message) failed to validate (according to local policy),
but should have validated.
|
INDETERMINATE
INDTERMINATE means that the object is insecure, but not authoritatively so.
|
INSECURE
INSECURE means that the object is authoritatively known to be insecure.
|
SECURE
SECURE means that the object (RRset or message) validated according to local policy.
|
UNCHECKED
UNCHECKED means that object has yet to be validated.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStatus UNCHECKED
public static final SecurityStatus BOGUS
public static final SecurityStatus INDETERMINATE
public static final SecurityStatus INSECURE
public static final SecurityStatus SECURE
public static SecurityStatus[] values()
for (SecurityStatus c : SecurityStatus.values()) System.out.println(c);
public static SecurityStatus 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 © 2020 jitsi.org. All rights reserved.