FolderCreationOptions

Inheritance: java.lang.Object

public class FolderCreationOptions

Represents the options for creating a subfolder in the Outlook PST message store. This class serves as a container for configuring specific settings related to the creation of subfolders.

Constructors

ConstructorDescription
FolderCreationOptions()Initializes a new instance of the FolderCreationOptions class with default values.
FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference)Initializes a new instance of the FolderCreationOptions class with the specified parameters.
FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference, String containerClass)Initializes a new instance of the FolderCreationOptions class with the specified parameters.

Methods

MethodDescription
equals(Object arg0)
getAllowNameCaseDifference()Gets or sets a value indicating whether to allow a difference in name casing when comparing folder names.
getClass()
getContainerClass()Gets or sets the container class for the new subfolder.
getCreateHierarchy()Gets or sets a value indicating whether to create the hierarchy of parent folders.
hashCode()
notify()
notifyAll()
setAllowNameCaseDifference(boolean value)Gets or sets a value indicating whether to allow a difference in name casing when comparing folder names.
setContainerClass(String value)Gets or sets the container class for the new subfolder.
setCreateHierarchy(boolean value)Gets or sets a value indicating whether to create the hierarchy of parent folders.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

FolderCreationOptions()

public FolderCreationOptions()

Initializes a new instance of the FolderCreationOptions class with default values.

FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference)

public FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference)

Initializes a new instance of the FolderCreationOptions class with the specified parameters.

Parameters:

ParameterTypeDescription
createHierarchybooleanA value indicating whether to create the hierarchy of parent folders if they don’t exist.
allowNameCaseDifferencebooleanA value indicating whether to allow a difference in name casing when comparing folder names.

FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference, String containerClass)

public FolderCreationOptions(boolean createHierarchy, boolean allowNameCaseDifference, String containerClass)

Initializes a new instance of the FolderCreationOptions class with the specified parameters.

Parameters:

ParameterTypeDescription
createHierarchybooleanA value indicating whether to create the hierarchy of parent folders if they don’t exist.
allowNameCaseDifferencebooleanA value indicating whether to allow a difference in name casing when comparing folder names.
containerClassjava.lang.StringThe container class for the new subfolder.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getAllowNameCaseDifference()

public final boolean getAllowNameCaseDifference()

Gets or sets a value indicating whether to allow a difference in name casing when comparing folder names.

Value: true if a difference in name casing should be allowed when comparing folder names; otherwise, false . The default value is false .


If a folder with the same name already exists when adding a new folder and AllowNameCaseDifference (#getAllowNameCaseDifference.getAllowNameCaseDifference/#setAllowNameCaseDifference(boolean).setAllowNameCaseDifference(boolean)) is set to true , the folder names will be treated as different even if the casing differs. In this case, no exception will be thrown, and the folder will be added. When AllowNameCaseDifference (#getAllowNameCaseDifference.getAllowNameCaseDifference/#setAllowNameCaseDifference(boolean).setAllowNameCaseDifference(boolean)) is set to false , the comparison will be case-insensitive, and the folder creation operation will consider folders with the same name but different casing as duplicates, throwing an InvalidOperationException to indicate that a folder with the specified name already exists.

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getContainerClass()

public final String getContainerClass()

Gets or sets the container class for the new subfolder.


The container class represents the message class of the new subfolder. The default value is “IPF.Note”.

Returns: java.lang.String

getCreateHierarchy()

public final boolean getCreateHierarchy()

Gets or sets a value indicating whether to create the hierarchy of parent folders.

Value: true if the hierarchy of parent folders should be created. In this case, the name of the subfolder to be created is considered as path; false if only the subfolder with specified name should be created. The default value is false .


When specifying the subfolder path, use the backslash (\) as the separator between folder names. For example, “parent1\parent2\subfolder”.

Returns: boolean

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setAllowNameCaseDifference(boolean value)

public final void setAllowNameCaseDifference(boolean value)

Gets or sets a value indicating whether to allow a difference in name casing when comparing folder names.

Value: true if a difference in name casing should be allowed when comparing folder names; otherwise, false . The default value is false .


If a folder with the same name already exists when adding a new folder and AllowNameCaseDifference (#getAllowNameCaseDifference.getAllowNameCaseDifference/#setAllowNameCaseDifference(boolean).setAllowNameCaseDifference(boolean)) is set to true , the folder names will be treated as different even if the casing differs. In this case, no exception will be thrown, and the folder will be added. When AllowNameCaseDifference (#getAllowNameCaseDifference.getAllowNameCaseDifference/#setAllowNameCaseDifference(boolean).setAllowNameCaseDifference(boolean)) is set to false , the comparison will be case-insensitive, and the folder creation operation will consider folders with the same name but different casing as duplicates, throwing an InvalidOperationException to indicate that a folder with the specified name already exists.

Parameters:

ParameterTypeDescription
valueboolean

setContainerClass(String value)

public final void setContainerClass(String value)

Gets or sets the container class for the new subfolder.


The container class represents the message class of the new subfolder. The default value is “IPF.Note”.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setCreateHierarchy(boolean value)

public final void setCreateHierarchy(boolean value)

Gets or sets a value indicating whether to create the hierarchy of parent folders.

Value: true if the hierarchy of parent folders should be created. In this case, the name of the subfolder to be created is considered as path; false if only the subfolder with specified name should be created. The default value is false .


When specifying the subfolder path, use the backslash (\) as the separator between folder names. For example, “parent1\parent2\subfolder”.

Parameters:

ParameterTypeDescription
valueboolean

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int