com.ibm.pim.docstore
Enum Document.Property
java.lang.Object
java.lang.Enum<Document.Property>
com.ibm.pim.docstore.Document.Property
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Document.Property>
- Enclosing interface:
- Document
public static enum Document.Property
- extends java.lang.Enum<Document.Property>
Enumeration listing document properties
Method Summary |
static Document.Property |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Document.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
ATTR_AUTO_GEN_SPEC
public static final Document.Property ATTR_AUTO_GEN_SPEC
ATTR_COL_COUNT
public static final Document.Property ATTR_COL_COUNT
ATTR_INPUT_TYPE
public static final Document.Property ATTR_INPUT_TYPE
ATTR_JSPLIKE
public static final Document.Property ATTR_JSPLIKE
ATTR_LOOKUP_NAME
public static final Document.Property ATTR_LOOKUP_NAME
ATTR_MARKETPLACE_NAME
public static final Document.Property ATTR_MARKETPLACE_NAME
ATTR_PO_STATUS
public static final Document.Property ATTR_PO_STATUS
ATTR_PO_STATUS_POST_URL
public static final Document.Property ATTR_PO_STATUS_POST_URL
ATTR_SCRIPT
public static final Document.Property ATTR_SCRIPT
ATTR_SCRIPT_INPUT_SPEC_NAME
public static final Document.Property ATTR_SCRIPT_INPUT_SPEC_NAME
ATTR_SEARCHPARAMETERS_INPUT_SPEC_NAME
public static final Document.Property ATTR_SEARCHPARAMETERS_INPUT_SPEC_NAME
ATTR_SEARCHPARAMETERS_NUMBER_OF_PARAMS
public static final Document.Property ATTR_SEARCHPARAMETERS_NUMBER_OF_PARAMS
ATTR_SEARCHPARAMETERS_SEARCH_TYPE
public static final Document.Property ATTR_SEARCHPARAMETERS_SEARCH_TYPE
ATTR_SPEC_NAME
public static final Document.Property ATTR_SPEC_NAME
ATTR_TYPE
public static final Document.Property ATTR_TYPE
CATALOG_NAME
public static final Document.Property CATALOG_NAME
CATEGORY_TREE_NAME
public static final Document.Property CATEGORY_TREE_NAME
CHARSET
public static final Document.Property CHARSET
COMPRESSED
public static final Document.Property COMPRESSED
CONTENT_TYPE
public static final Document.Property CONTENT_TYPE
DATA_SOURCE_NAME
public static final Document.Property DATA_SOURCE_NAME
DATE_UPLOADED
public static final Document.Property DATE_UPLOADED
DELETE_AFTER_DISTRIBUTION
public static final Document.Property DELETE_AFTER_DISTRIBUTION
DELIMITER
public static final Document.Property DELIMITER
DOCUMENT_PERMISSION
public static final Document.Property DOCUMENT_PERMISSION
FEED_NAME
public static final Document.Property FEED_NAME
FIELD_SEPARATOR
public static final Document.Property FIELD_SEPARATOR
FILESYSTEM_TIMESTAMP
public static final Document.Property FILESYSTEM_TIMESTAMP
FILE_NAME
public static final Document.Property FILE_NAME
FILE_PATH
public static final Document.Property FILE_PATH
FILE_SEMANTICS
public static final Document.Property FILE_SEMANTICS
GENERATED
public static final Document.Property GENERATED
IGNORE_HEADER
public static final Document.Property IGNORE_HEADER
LAST_MODIFIED_TIMESTAMP
public static final Document.Property LAST_MODIFIED_TIMESTAMP
LAST_MODIFIED_USERNAME
public static final Document.Property LAST_MODIFIED_USERNAME
SOURCE_TIMESTAMP_FOR_FEED
public static final Document.Property SOURCE_TIMESTAMP_FOR_FEED
SPEC_NAME
public static final Document.Property SPEC_NAME
CATALOG_CATALOG_EXPORT_SOURCE_CATALOG_NAME
public static final Document.Property CATALOG_CATALOG_EXPORT_SOURCE_CATALOG_NAME
CATALOG_CATALOG_EXPORT_DEST_CATALOG_NAME
public static final Document.Property CATALOG_CATALOG_EXPORT_DEST_CATALOG_NAME
MSG_NAME
public static final Document.Property MSG_NAME
MSG_ATTACHMENT_NAME
public static final Document.Property MSG_ATTACHMENT_NAME
CONTAINER_NAME
public static final Document.Property CONTAINER_NAME
CONTAINER_TYPE
public static final Document.Property CONTAINER_TYPE
values
public static final Document.Property[] 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(Document.Property c : Document.Property.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Document.Property 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