public enum CmpCompatibility extends Enum<CmpCompatibility>
Enum Constant and Description |
---|
NOT_SUPPORTED
Both the Mesh and Portal versions could be retrieved, but at least one
of them does not match the CMP version of the CMS.
|
SUPPORTED
Both the Mesh and Portal versions could be retrieved, and match the CMP
version of the CMS.
|
UNKNOWN
Either the Mesh or Portal version could not be retrieved, or the CMS
could not determine the requirements for its CMP version.
|
Modifier and Type | Method and Description |
---|---|
static CmpCompatibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CmpCompatibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmpCompatibility SUPPORTED
public static final CmpCompatibility NOT_SUPPORTED
public static final CmpCompatibility UNKNOWN
public static CmpCompatibility[] values()
for (CmpCompatibility c : CmpCompatibility.values()) System.out.println(c);
public static CmpCompatibility valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 Gentics Software. All rights reserved.