public enum RepositoryType extends java.lang.Enum<RepositoryType>
Repository.getRepositoryType
Enum Constant and Description |
---|
Combined
A repository that is designated as a "combined" FPOS/ROS per its current
P8 Add-on status.
|
Content
A repository that has the IBM Enterprise Records "ROS" data model
installed (but not any "FPOS" data model).
|
FilePlan
A repository that has one of the IBM Enterprise Records "FPOS"
data models installed.
|
Plain
A "plain" repository that does not have any IBM Enterprise Records
data model installed.
|
Unknown
Unknown repository type.
|
Modifier and Type | Method and Description |
---|---|
static RepositoryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RepositoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepositoryType Unknown
public static final RepositoryType Plain
public static final RepositoryType Content
public static final RepositoryType FilePlan
public static final RepositoryType Combined
public static RepositoryType[] values()
for (RepositoryType c : RepositoryType.values()) System.out.println(c);
public static RepositoryType 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© Copyright IBM Corp. 2010, 2013. All Rights Reserved.