org.apache.camel.model.dataformat
Enum ArtixDSContentType

java.lang.Object
  extended by java.lang.Enum<ArtixDSContentType>
      extended by org.apache.camel.model.dataformat.ArtixDSContentType
All Implemented Interfaces:
Serializable, Comparable<ArtixDSContentType>

public enum ArtixDSContentType
extends Enum<ArtixDSContentType>

Version:
$Revision: 640438 $

Enum Constant Summary
Auto
           
Binary
           
Default
           
Java
           
Sax
           
TagValuePair
           
Text
           
Xml
           
 
Method Summary
static ArtixDSContentType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArtixDSContentType[] 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

Default

public static final ArtixDSContentType Default

Auto

public static final ArtixDSContentType Auto

Binary

public static final ArtixDSContentType Binary

Text

public static final ArtixDSContentType Text

Java

public static final ArtixDSContentType Java

Xml

public static final ArtixDSContentType Xml

Sax

public static final ArtixDSContentType Sax

TagValuePair

public static final ArtixDSContentType TagValuePair
Method Detail

values

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

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

valueOf

public static ArtixDSContentType 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


Apache CAMEL