|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<IdentifierType>
xades4j.properties.IdentifierType
public enum IdentifierType
The object IdentifierType as defined in XAdES.
<xsd:complexType name="IdentifierType">
<xsd:simpleContent>
<xsd:extension base="xsd:anyURI">
<xsd:attribute name="Qualifier" type="QualifierType" use="optional"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="QualifierType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="OIDAsURI"/>
<xsd:enumeration value="OIDAsURN"/>
</xsd:restriction>
</xsd:simpleType>
| Enum Constant Summary | |
|---|---|
OIDAsURI
The identifier is an Object IDentifier encoded as an URI |
|
OIDAsURN
The identifier is an Object IDentifier encoded as an URN |
|
URI
The identifier is an URI. |
|
| Method Summary | |
|---|---|
static IdentifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IdentifierType[] |
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 IdentifierType URI
public static final IdentifierType OIDAsURI
public static final IdentifierType OIDAsURN
| Method Detail |
|---|
public static IdentifierType[] values()
for (IdentifierType c : IdentifierType.values()) System.out.println(c);
public static IdentifierType 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 | |||||||||