org.jboss.seam.ui.graphicImage
Enum Image.Type

java.lang.Object
  extended by java.lang.Enum<Image.Type>
      extended by org.jboss.seam.ui.graphicImage.Image.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Image.Type>
Enclosing class:
Image

public static enum Image.Type
extends java.lang.Enum<Image.Type>


Enum Constant Summary
IMAGE_GIF
           
IMAGE_JPEG
           
IMAGE_PNG
           
 
Method Summary
 java.util.List<java.lang.String> getAlternativeMimeTypes()
           
 java.lang.String getExtension()
           
protected  java.lang.String getImageFormatName()
           
 java.lang.String getMimeType()
           
static Image.Type getTypeByFormatName(java.lang.String formatName)
           
static Image.Type getTypeByMimeType(java.lang.String mimeType)
           
static Image.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Image.Type[] 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

IMAGE_PNG

public static final Image.Type IMAGE_PNG

IMAGE_JPEG

public static final Image.Type IMAGE_JPEG

IMAGE_GIF

public static final Image.Type IMAGE_GIF
Method Detail

values

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

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

valueOf

public static Image.Type 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

getMimeType

public java.lang.String getMimeType()

getExtension

public java.lang.String getExtension()

getAlternativeMimeTypes

public java.util.List<java.lang.String> getAlternativeMimeTypes()

getImageFormatName

protected java.lang.String getImageFormatName()

getTypeByMimeType

public static Image.Type getTypeByMimeType(java.lang.String mimeType)

getTypeByFormatName

public static Image.Type getTypeByFormatName(java.lang.String formatName)


Copyright © 2008 JBoss. All Rights Reserved.