public enum KeyTypes extends Enum<KeyTypes>
Java class for KeyTypes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="KeyTypes"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="encryption"/> <enumeration value="signing"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ENCRYPTION |
SIGNING |
Modifier and Type | Method and Description |
---|---|
static KeyTypes |
fromValue(String v) |
String |
value() |
static KeyTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyTypes ENCRYPTION
public static final KeyTypes SIGNING
public static KeyTypes[] values()
for (KeyTypes c : KeyTypes.values()) System.out.println(c);
public static KeyTypes 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.