public enum CertCheckResult extends Enum<CertCheckResult>
Enum Constant and Description |
---|
expired |
invalid |
none |
revoked |
self_signed |
trusted |
untrusted |
Modifier and Type | Method and Description |
---|---|
static CertCheckResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertCheckResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertCheckResult trusted
public static final CertCheckResult self_signed
public static final CertCheckResult untrusted
public static final CertCheckResult revoked
public static final CertCheckResult expired
public static final CertCheckResult invalid
public static final CertCheckResult none
public static CertCheckResult[] values()
for (CertCheckResult c : CertCheckResult.values()) System.out.println(c);
public static CertCheckResult 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 © 2018 "Tigase, Inc.". All rights reserved.