com.ibm.workplace.wcm.api.authoring
Enum EditorBean.ResourceSelectionModel

java.lang.Object
  extended by java.lang.Enum<EditorBean.ResourceSelectionModel>
      extended by com.ibm.workplace.wcm.api.authoring.EditorBean.ResourceSelectionModel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EditorBean.ResourceSelectionModel>
Enclosing interface:
EditorBean

public static enum EditorBean.ResourceSelectionModel
extends java.lang.Enum<EditorBean.ResourceSelectionModel>

Default resource selection options


Enum Constant Summary
DigitalAssetManager
          Digital asset manager
FileSystem
          file system
Library
          wcm library
LibraryOrFileSystem
          File system or wcm library
 
Method Summary
static EditorBean.ResourceSelectionModel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EditorBean.ResourceSelectionModel[] 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

FileSystem

public static final EditorBean.ResourceSelectionModel FileSystem
file system


Library

public static final EditorBean.ResourceSelectionModel Library
wcm library


LibraryOrFileSystem

public static final EditorBean.ResourceSelectionModel LibraryOrFileSystem
File system or wcm library


DigitalAssetManager

public static final EditorBean.ResourceSelectionModel DigitalAssetManager
Digital asset manager

Method Detail

values

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

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

valueOf

public static EditorBean.ResourceSelectionModel 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
java.lang.NullPointerException - if the argument is null