Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.2)
E26229-03


oracle.as.scheduler.request
Enum ContentCategory

java.lang.Object
  extended by java.lang.Enum<ContentCategory>
      extended by oracle.as.scheduler.request.ContentCategory

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ContentCategory>

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

Categories of content stored in the content store.


Enum Constant Summary
Log
          Log content category.
Output
          Output content category.
Unknown
          Unknown content category.

 

Method Summary
static ContentCategory fromString(java.lang.String contentCategoryStr)
          Converts a stringified content category into a ContentCategory object.
 java.lang.String toString(java.util.Locale locale)
           
 int value()
          Returns the numeric value of the content category.
static ContentCategory valueOf(int value)
          Returns the content category for the given value.
static ContentCategory valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ContentCategory[] 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

Unknown

public static final ContentCategory Unknown
Unknown content category.

Log

public static final ContentCategory Log
Log content category.

Output

public static final ContentCategory Output
Output content category.

Method Detail

values

public static ContentCategory[] 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 (ContentCategory c : ContentCategory.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

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

value

public int value()
Returns the numeric value of the content category.
Returns:
numeric value of this content category.

valueOf

public static ContentCategory valueOf(int value)
Returns the content category for the given value.
Parameters:
value - numeric value to convert to content category.
Returns:
content category.

fromString

public static ContentCategory fromString(java.lang.String contentCategoryStr)
Converts a stringified content category into a ContentCategory object.
Parameters:
contentCategoryStr -
Returns:
ContentCategory derived from contentCategoryStr or ContentCategory.Unknown if the conversion could not be made.

toString

public java.lang.String toString(java.util.Locale locale)

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.2)
E26229-03


Copyright © 2008, 2012 Oracle. All rights reserved.