Package uk.org.siri.siri13
Enum ImageContentEnumeration
- java.lang.Object
-
- java.lang.Enum<ImageContentEnumeration>
-
- uk.org.siri.siri13.ImageContentEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<ImageContentEnumeration>
public enum ImageContentEnumeration extends Enum<ImageContentEnumeration>
Java class for ImageContentEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ImageContentEnumeration"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="map"/> <enumeration value="graphic"/> <enumeration value="logo"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImageContentEnumerationfromValue(String v)Stringvalue()static ImageContentEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static ImageContentEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAP
public static final ImageContentEnumeration MAP
-
GRAPHIC
public static final ImageContentEnumeration GRAPHIC
-
LOGO
public static final ImageContentEnumeration LOGO
-
-
Method Detail
-
values
public static ImageContentEnumeration[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ImageContentEnumeration c : ImageContentEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageContentEnumeration valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static ImageContentEnumeration fromValue(String v)
-
-