com.fatwire.cs.ui.view.renderer
Enum RenderModeEnum

java.lang.Object
  extended by java.lang.Enum<RenderModeEnum>
      extended by com.fatwire.cs.ui.view.renderer.RenderModeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RenderModeEnum>

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

Represents the modes in which asset's data can be displayed.


Enum Constant Summary
CREATE
           
EDIT
           
INSPECT
           
 
Method Summary
static RenderModeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RenderModeEnum[] 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

INSPECT

public static final RenderModeEnum INSPECT

EDIT

public static final RenderModeEnum EDIT

CREATE

public static final RenderModeEnum CREATE
Method Detail

values

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

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

valueOf

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


Copyright (c) 2003 - 2011 FatWire Corporation All Rights Reserved.