Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

oracle.javatools.ui.checklist
Enum ContentElement.Type

java.lang.Object
  extended by java.lang.Enum<ContentElement.Type>
      extended by oracle.javatools.ui.checklist.ContentElement.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ContentElement.Type>
Enclosing class:
ContentElement

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

Specifies the type of ContentElement.


Enum Constant Summary
ACTIONBUTTON
          This represents ActionButton that triggers some action.
HELPLINK_CUECARD
          This represents a help link for cue cards.
HELPLINK_CUSTOMHELP
          This represents a custom help link.
HELPLINK_DEVGUIDE
          This represents a help link for developer guide.
HELPLINK_HELPTOPIC
          This represents a help link for a particular help topic.
HELPLINK_STEPBYSTEP
          This represents a help link for step by step guide.
HELPLINK_TUTORIAL
          This represents a help link for tutorials.
HELPLINK_USERGUIDE
          This represents a help link for user's guide.
HELPLINK_WHATISEE
          This represents a help link for what I see description.
HYPERLINK
          This represents all simple links inside the StepContent.
 
Method Summary
static ContentElement.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ContentElement.Type[] 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

ACTIONBUTTON

public static final ContentElement.Type ACTIONBUTTON
This represents ActionButton that triggers some action.


HYPERLINK

public static final ContentElement.Type HYPERLINK
This represents all simple links inside the StepContent.


HELPLINK_DEVGUIDE

public static final ContentElement.Type HELPLINK_DEVGUIDE
This represents a help link for developer guide. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_STEPBYSTEP

public static final ContentElement.Type HELPLINK_STEPBYSTEP
This represents a help link for step by step guide. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_HELPTOPIC

public static final ContentElement.Type HELPLINK_HELPTOPIC
This represents a help link for a particular help topic. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_WHATISEE

public static final ContentElement.Type HELPLINK_WHATISEE
This represents a help link for what I see description. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_CUECARD

public static final ContentElement.Type HELPLINK_CUECARD
This represents a help link for cue cards. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_TUTORIAL

public static final ContentElement.Type HELPLINK_TUTORIAL
This represents a help link for tutorials. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_USERGUIDE

public static final ContentElement.Type HELPLINK_USERGUIDE
This represents a help link for user's guide. If clients don't specify label or icon for this ContentElement, default label or icon will be used.


HELPLINK_CUSTOMHELP

public static final ContentElement.Type HELPLINK_CUSTOMHELP
This represents a custom help link. Clients have to specify default label and icon for this.

Method Detail

values

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

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

valueOf

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

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Copyright © 1997, 2011, Oracle. All rights reserved.