BPM Process API

fuego.papi.attachment
Enum AttachmentStorageType

java.lang.Object
  extended by java.lang.Enum<AttachmentStorageType>
      extended by fuego.papi.attachment.AttachmentStorageType
All Implemented Interfaces:
Serializable, Comparable<AttachmentStorageType>

public enum AttachmentStorageType
extends Enum<AttachmentStorageType>

Indicates storage repository for attachments.


Enum Constant Summary
COLLAB_DB
          ALI Collaboration database.
ENGINE_DB
          ALBPM Engine database.
KB_DB
          ALI Knowledge Base database.
REFERENCE
          Used when storing remote reference attachments.
 
Method Summary
 String getString()
           
 String getString(Locale locale)
           
static AttachmentStorageType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AttachmentStorageType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENGINE_DB

public static final AttachmentStorageType ENGINE_DB
ALBPM Engine database.


COLLAB_DB

public static final AttachmentStorageType COLLAB_DB
ALI Collaboration database.


KB_DB

public static final AttachmentStorageType KB_DB
ALI Knowledge Base database.


REFERENCE

public static final AttachmentStorageType REFERENCE
Used when storing remote reference attachments. (Reference to attachments of a another process)

Method Detail

values

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

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

valueOf

public static AttachmentStorageType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name

getString

public String getString()

getString

public String getString(Locale locale)

BPM Process API

© Copyright 1996-2008 Oracle Corporation