Enum Class OnPropertiesLinkOp

java.lang.Object
java.lang.Enum<OnPropertiesLinkOp>
com.hp.ucmdb.api.topology.OnPropertiesLinkOp
All Implemented Interfaces:
Serializable, Comparable<OnPropertiesLinkOp>, java.lang.constant.Constable

public enum OnPropertiesLinkOp extends Enum<OnPropertiesLinkOp> implements Serializable
Specifies the allowed operations in an OnPropertiesLink instance.
Since:
UCMDB 9.0
See Also:
  • Enum Constant Details

    • NOT_EQUAL

      public static final OnPropertiesLinkOp NOT_EQUAL
      Specifies the condition that the source and target properties are NOT equal to each other.
    • EQUAL

      public static final OnPropertiesLinkOp EQUAL
      Specifies the condition that the source and target properties are equal to each other.
    • IN_STRING

      public static final OnPropertiesLinkOp IN_STRING
      Specifies that the source property must be part of the target property string.
    • IN_STRING_IGNORE_CASE

      public static final OnPropertiesLinkOp IN_STRING_IGNORE_CASE
      Specifies that the soruce property must be part of the target property string, case insensitive.
  • Method Details

    • values

      public static OnPropertiesLinkOp[] 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

      public static OnPropertiesLinkOp valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<OnPropertiesLinkOp>