Skip navigation links

Oracle® WebCenter Content Java API Reference for Imaging
11g Release 1 (11.1.1)

E12853-03


oracle.imaging
Enum Application.SectionFlag

java.lang.Object
  extended by java.lang.Enum<Application.SectionFlag>
      extended by oracle.imaging.Application.SectionFlag

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Application.SectionFlag>
Enclosing class:
Application

public static enum Application.SectionFlag
extends java.lang.Enum<Application.SectionFlag>

Flags that identify which sections are applicable to a specific request.

For example, to get a list of applications with just the application properties, the SectionFlags.PROPERTIES flag would be specified. To see all of the application data, specify SectionFlags.ALL


Enum Constant Summary
DESCRIPTION
          The description of an application is requested or provided.
DOCUMENTPERMISSIONS
          The document permissions section of an application is requested or provided.
DOCUMENTSECURITY
          The document security section of an application is requested or provided.
FIELDDEFINITIONS
          The field definitions section of an application is requested or provided.
HISTORY
          The audit history for the application.
LIFECYCLEPOLICY
          The lifecycle policy section of an application is requested or provided.
NAME
          The name of an application is requested or provided.
PERMISSIONS
          The permissions section of an application is requested or provided.
PROPERTIES
          The properties section of an application is requested or provided.
SECURITY
          The security section of an application is requested or provided.
WORKFLOWCONFIG
          The workflow configuration section of an application is requested or provided.

 

Method Summary
static Application.SectionFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Application.SectionFlag[] 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

NAME

public static final Application.SectionFlag NAME
The name of an application is requested or provided.

DESCRIPTION

public static final Application.SectionFlag DESCRIPTION
The description of an application is requested or provided.

PROPERTIES

public static final Application.SectionFlag PROPERTIES
The properties section of an application is requested or provided.

FIELDDEFINITIONS

public static final Application.SectionFlag FIELDDEFINITIONS
The field definitions section of an application is requested or provided.

PERMISSIONS

public static final Application.SectionFlag PERMISSIONS
The permissions section of an application is requested or provided.

DOCUMENTPERMISSIONS

public static final Application.SectionFlag DOCUMENTPERMISSIONS
The document permissions section of an application is requested or provided.

SECURITY

public static final Application.SectionFlag SECURITY
The security section of an application is requested or provided.

DOCUMENTSECURITY

public static final Application.SectionFlag DOCUMENTSECURITY
The document security section of an application is requested or provided.

LIFECYCLEPOLICY

public static final Application.SectionFlag LIFECYCLEPOLICY
The lifecycle policy section of an application is requested or provided.

WORKFLOWCONFIG

public static final Application.SectionFlag WORKFLOWCONFIG
The workflow configuration section of an application is requested or provided.

HISTORY

public static final Application.SectionFlag HISTORY
The audit history for the application.

Method Detail

values

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

valueOf

public static Application.SectionFlag 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

Skip navigation links

Oracle® WebCenter Content Java API Reference for Imaging
11g Release 1 (11.1.1)

E12853-03


Copyright © 2010, 2011, Oracle and/or its affiliates. All rights reserved.