|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GPGInformation.KeyStatus>
uk.me.nxg.enormity.gpg.GPGInformation.KeyStatus
public static enum GPGInformation.KeyStatus
Indicates the various status that a key can have. For each signature, only one of these statuses can apply.
Enum Constant Summary | |
---|---|
BAD
The signature with the keyid has not been verified okay. |
|
ERROR
It was not possible to check the signature. |
|
EXPIRED
The signature with the keyid is good, but the signature is expired. |
|
EXPIREDKEY
The signature with the keyid is good, but the signature was made by an expired key. |
|
GOOD
The signature with the keyid is good. |
|
REVOKEDKEY
The signature with the keyid is good, but the signature was made by a revoked key. |
Method Summary | |
---|---|
static GPGInformation.KeyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GPGInformation.KeyStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GPGInformation.KeyStatus GOOD
public static final GPGInformation.KeyStatus BAD
public static final GPGInformation.KeyStatus EXPIRED
public static final GPGInformation.KeyStatus EXPIREDKEY
public static final GPGInformation.KeyStatus REVOKEDKEY
public static final GPGInformation.KeyStatus ERROR
Method Detail |
---|
public static GPGInformation.KeyStatus[] values()
for (GPGInformation.KeyStatus c : GPGInformation.KeyStatus.values()) System.out.println(c);
public static GPGInformation.KeyStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |