public enum NymType extends Enum<NymType>
Java class for nymType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="nymType"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="anonymity"/> <enumeration value="verinymity"/> <enumeration value="pseudonymity"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ANONYMITY |
PSEUDONYMITY |
VERINYMITY |
Modifier and Type | Method and Description |
---|---|
static NymType |
fromValue(String v) |
String |
value() |
static NymType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NymType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NymType ANONYMITY
public static final NymType VERINYMITY
public static final NymType PSEUDONYMITY
public static NymType[] values()
for (NymType c : NymType.values()) System.out.println(c);
public static NymType 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 nullpublic String value()
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.