tigase.cert
Enum CertCheckResult
java.lang.Object
java.lang.Enum<CertCheckResult>
tigase.cert.CertCheckResult
- All Implemented Interfaces:
- Serializable, Comparable<CertCheckResult>
public enum CertCheckResult
- extends Enum<CertCheckResult>
Created: Oct 29, 2010 3:39:59 PM
- Version:
- $Rev$
- Author:
- Artur Hefczyc
|
Method Summary |
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. |
trusted
public static final CertCheckResult trusted
self_signed
public static final CertCheckResult self_signed
untrusted
public static final CertCheckResult untrusted
revoked
public static final CertCheckResult revoked
expired
public static final CertCheckResult expired
invalid
public static final CertCheckResult invalid
none
public static final CertCheckResult none
values
public static CertCheckResult[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (CertCheckResult c : CertCheckResult.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CertCheckResult valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2013 Tigase. All Rights Reserved.