public static enum GPGInformation.Validity extends Enum<GPGInformation.Validity>
Enum Constant and Description |
---|
FULLY |
MARGINAL |
NEVER |
ULTIMATE |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static GPGInformation.Validity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GPGInformation.Validity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GPGInformation.Validity UNDEFINED
public static final GPGInformation.Validity NEVER
public static final GPGInformation.Validity MARGINAL
public static final GPGInformation.Validity FULLY
public static final GPGInformation.Validity ULTIMATE
public static GPGInformation.Validity[] values()
for (GPGInformation.Validity c : GPGInformation.Validity.values()) System.out.println(c);
public static GPGInformation.Validity 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 © 2014. All rights reserved.