Package com.hp.ucmdb.api.topology
Enum Class OnPropertiesLinkOp
- All Implemented Interfaces:
Serializable
,Comparable<OnPropertiesLinkOp>
,java.lang.constant.Constable
Specifies the allowed operations in an OnPropertiesLink instance.
- Since:
- UCMDB 9.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies the condition that the source and target properties are equal to each other.Specifies that the source property must be part of the target property string.Specifies that the soruce property must be part of the target property string, case insensitive.Specifies the condition that the source and target properties are NOT equal to each other. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
static OnPropertiesLinkOp
Returns the enum constant of this class with the specified name.static OnPropertiesLinkOp[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_EQUAL
Specifies the condition that the source and target properties are NOT equal to each other. -
EQUAL
Specifies the condition that the source and target properties are equal to each other. -
IN_STRING
Specifies that the source property must be part of the target property string. -
IN_STRING_IGNORE_CASE
Specifies that the soruce property must be part of the target property string, case insensitive.
-
-
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
-
toString
- Overrides:
toString
in classEnum<OnPropertiesLinkOp>
-