org.odata4j.format
Enum FormatType

java.lang.Object
  extended by java.lang.Enum<FormatType>
      extended by org.odata4j.format.FormatType
All Implemented Interfaces:
Serializable, Comparable<FormatType>

public enum FormatType
extends Enum<FormatType>


Enum Constant Summary
ATOM
           
JSON
           
 
Method Summary
 String[] getAcceptableMediaTypes()
           
static FormatType parse(String format)
           
static FormatType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FormatType[] 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

ATOM

public static final FormatType ATOM

JSON

public static final FormatType JSON
Method Detail

getAcceptableMediaTypes

public String[] getAcceptableMediaTypes()

parse

public static FormatType parse(String format)

valueOf

public static FormatType 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
NullPointerException - if the argument is null

values

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

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


http://odata4j.org