org.spase.parser200
Enum EnumSourceType

java.lang.Object
  extended by java.lang.Enum<EnumSourceType>
      extended by org.spase.parser200.EnumSourceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumSourceType>

public enum EnumSourceType
extends java.lang.Enum<EnumSourceType>

Java class for enumSourceType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="enumSourceType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Ancillary"/>
     <enumeration value="Browse"/>
     <enumeration value="Data"/>
     <enumeration value="Layout"/>
     <enumeration value="Thumbnail"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ANCILLARY
          A complementary item which can be subordinate, subsidiary, auxiliary, supplementary to the primary item.
BROWSE
          A representation of an image which is suitable to reveal most or all of the details of the image.
DATA
          A collection of organized information, usually the results of experience, observation or experiment, or a set of premises.
LAYOUT
          The structured arrangement of items in a collection.
THUMBNAIL
          A small representation of an image which is suitable to infer what the full-sized imaged is like.
 
Method Summary
static EnumSourceType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumSourceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumSourceType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ANCILLARY

public static final EnumSourceType ANCILLARY
A complementary item which can be subordinate, subsidiary, auxiliary, supplementary to the primary item.


BROWSE

public static final EnumSourceType BROWSE
A representation of an image which is suitable to reveal most or all of the details of the image.


DATA

public static final EnumSourceType DATA
A collection of organized information, usually the results of experience, observation or experiment, or a set of premises. This may consist of numbers, words, or images, particularly as measurements or observations of a set of variables.


LAYOUT

public static final EnumSourceType LAYOUT
The structured arrangement of items in a collection.


THUMBNAIL

public static final EnumSourceType THUMBNAIL
A small representation of an image which is suitable to infer what the full-sized imaged is like.

Method Detail

values

public static final EnumSourceType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(EnumSourceType c : EnumSourceType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static EnumSourceType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

value

public java.lang.String value()

fromValue

public static EnumSourceType fromValue(java.lang.String v)