public enum StoreSupportMask extends java.lang.Enum<StoreSupportMask>
| Enum Constant and Description |
|---|
ANSI
The message store supports properties containing ANSI (8-bit) characters.
|
ATTACHMENTS
The message store supports attachments (OLE or non-OLE) to messages.
|
CATEGORIZE
The message store supports categorized views of tables.
|
CREATE
The message store supports creation of new messages.
|
ENTRY_ID_UNIQUE
Entry identifiers for the objects in the message store are unique, that is, never reused during the life of the store.
|
HTML
The message store supports HTML messages, stored in the message.getBodyHtml().
|
ITEM_PROC
In a wrapped PST store, indicates that when a new message arrives at the store, the store does rules and spam filter processing on the message separately.
|
LOCAL_STORE
This flag is reserved and should not be used.
|
MODIFY
The message store supports modification of its existing messages.
|
MULTI_VALUE_PROPERTIES
The message store supports multivalued properties, guarantees the stability of value order in a multivalued property throughout a save operation, and supports instantiation of multivalued properties in tables.
|
NOTIFY
The message store supports notifications.
|
OLE
The message store supports OLE attachments.
|
PUBLIC_FOLDERS
The folders in this store are public (multi-user), not private (possibly multi-instance but not multi-user).
|
PUSHER
The MAPI Protocol Handler will not crawl the store, and the store is responsible to push any changes through notifications to the indexer to have messages indexed.
|
READ_ONLY
All interfaces for the message store have a read-only access level.
|
RESTRICTIONS
The message store supports restrictions.
|
RTF
The message store supports Rich Text Format (RTF) messages, usually compressed.
|
SEARCH
The message store supports search-results folders.
|
SORT
The message store supports sorting views of tables.
|
SUBMIT
The message store supports marking a message for submission.
|
UNCOMPRESSED_RTF
The message store supports storage of RTF messages in uncompressed form.
|
UNICODE
The message store supports properties containing Unicode characters.
|
| Modifier and Type | Method and Description |
|---|---|
static StoreSupportMask |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StoreSupportMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreSupportMask ANSI
public static final StoreSupportMask ATTACHMENTS
public static final StoreSupportMask CATEGORIZE
public static final StoreSupportMask CREATE
public static final StoreSupportMask ENTRY_ID_UNIQUE
public static final StoreSupportMask HTML
public static final StoreSupportMask ITEM_PROC
public static final StoreSupportMask LOCAL_STORE
public static final StoreSupportMask MODIFY
public static final StoreSupportMask MULTI_VALUE_PROPERTIES
public static final StoreSupportMask NOTIFY
public static final StoreSupportMask OLE
public static final StoreSupportMask PUBLIC_FOLDERS
public static final StoreSupportMask PUSHER
public static final StoreSupportMask READ_ONLY
public static final StoreSupportMask RESTRICTIONS
public static final StoreSupportMask RTF
public static final StoreSupportMask SEARCH
public static final StoreSupportMask SORT
public static final StoreSupportMask SUBMIT
public static final StoreSupportMask UNCOMPRESSED_RTF
public static final StoreSupportMask UNICODE
public static StoreSupportMask[] values()
for (StoreSupportMask c : StoreSupportMask.values()) System.out.println(c);
public static StoreSupportMask valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null