public enum EdmType extends Enum<EdmType>
<xs:simpleType xmlns:ns="http://www.europeana.eu/schemas/edm/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="EdmType">
<xs:restriction base="xs:string">
<xs:enumeration value="TEXT"/>
<xs:enumeration value="VIDEO"/>
<xs:enumeration value="IMAGE"/>
<xs:enumeration value="SOUND"/>
<xs:enumeration value="3D"/>
</xs:restriction>
</xs:simpleType>
| Modifier and Type | Method and Description |
|---|---|
static EdmType |
convert(String value) |
static EdmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
String |
xmlValue() |
public static final EdmType TEXT
public static final EdmType VIDEO
public static final EdmType IMAGE
public static final EdmType SOUND
public static final EdmType _3_D
public static EdmType[] values()
for (EdmType c : EdmType.values()) System.out.println(c);
public static EdmType 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 xmlValue()
Copyright © 2015 Europeana Foundation. All rights reserved.