Enum Class OpenMetadataConformanceStatus
java.lang.Object
java.lang.Enum<OpenMetadataConformanceStatus>
org.odpi.openmetadata.conformance.beans.OpenMetadataConformanceStatus
- All Implemented Interfaces:
Serializable
,Comparable<OpenMetadataConformanceStatus>
,Constable
public enum OpenMetadataConformanceStatus
extends Enum<OpenMetadataConformanceStatus>
implements Serializable
OpenMetadataConformanceStatus is used to document the level of conformance to requirements (and hence profiles)
detected by test cases.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe technology provides correctly functioning support for all features in this profile.The technology provides correctly functioning responses that indicate it has no support for the features in this profile.The technology provides correctly functioning support for some of the features in this profile and responds appropriately for features it does not support.The technology is not functioning according to the open metadata specifications.There is not enough evidence to determine the conformance of the technology under test. -
Method Summary
Modifier and TypeMethodDescriptionReturn the default description for the enum, used when there is not natural language resource bundle available.getName()
Return the name for the enum, used for message content.int
Return the identifier for the enum, used for indexing arrays etc with the enum.toString()
toString() JSON-styleReturns the enum constant of this class with the specified name.static OpenMetadataConformanceStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN_STATUS
There is not enough evidence to determine the conformance of the technology under test. -
CONFORMANT_FULL_SUPPORT
The technology provides correctly functioning support for all features in this profile. -
CONFORMANT_PARTIAL_SUPPORT
The technology provides correctly functioning support for some of the features in this profile and responds appropriately for features it does not support. -
CONFORMANT_NO_SUPPORT
The technology provides correctly functioning responses that indicate it has no support for the features in this profile. -
NOT_CONFORMANT
The technology is not functioning according to the open metadata specifications.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getOrdinal
public int getOrdinal()Return the identifier for the enum, used for indexing arrays etc with the enum.- Returns:
- int identifier
-
getName
Return the name for the enum, used for message content.- Returns:
- String name
-
getDescription
Return the default description for the enum, used when there is not natural language resource bundle available.- Returns:
- String default description
-
toString
toString() JSON-style- Overrides:
toString
in classEnum<OpenMetadataConformanceStatus>
- Returns:
- string description
-