|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KeyStore.KeyCertificationType>
com.didisoft.pgp.KeyStore.KeyCertificationType
public static enum KeyStore.KeyCertificationType
Possible certification types for an OpenPGP key
More information can be found in RFC 4880
Enum Constant Summary | |
---|---|
CasualCertification
Casual certification of a User ID and Public-Key packet. |
|
GenericCertification
Generic certification of a User ID - The issuer of this certification does not make any particular assertion as to how well the certifier has checked that the owner of the key is in fact the person described by the User ID |
|
PersonalCertification
Personal certification of a User ID and Public-Key packet. |
|
PositiveCertification
Positive certification of a User ID and Public-Key packet. |
Method Summary | |
---|---|
int |
getValue()
The actual code value for the selected sertification |
static KeyStore.KeyCertificationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static KeyStore.KeyCertificationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 KeyStore.KeyCertificationType GenericCertification
public static final KeyStore.KeyCertificationType PersonalCertification
public static final KeyStore.KeyCertificationType CasualCertification
public static final KeyStore.KeyCertificationType PositiveCertification
Method Detail |
---|
public static KeyStore.KeyCertificationType[] values()
for (KeyStore.KeyCertificationType c : KeyStore.KeyCertificationType.values()) System.out.println(c);
public static KeyStore.KeyCertificationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic int getValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |