org.apache.lucene.gdata.gom
Enum AtomMediaType

java.lang.Object
  extended by java.lang.Enum<AtomMediaType>
      extended by org.apache.lucene.gdata.gom.AtomMediaType
All Implemented Interfaces:
Serializable, Comparable<AtomMediaType>

public enum AtomMediaType
extends Enum<AtomMediaType>

Describes an abstraction of a mime-type used to define the content of a atom:content element. This could be every possible mimetype but has to match this ".+/.+" Pattern.

Author:
Simon Willnauer

Enum Constant Summary
BINARY
          A binary media type (mime-type)
TEXT
          A text but no xml media type (mime-type)
XML
          A xml media type (mime-type)
 
Method Summary
static AtomMediaType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AtomMediaType[] 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

XML

public static final AtomMediaType XML
A xml media type (mime-type)


TEXT

public static final AtomMediaType TEXT
A text but no xml media type (mime-type)


BINARY

public static final AtomMediaType BINARY
A binary media type (mime-type)

Method Detail

values

public static final AtomMediaType[] 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(AtomMediaType c : AtomMediaType.values())
        System.out.println(c);

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

valueOf

public static AtomMediaType 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 name


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.