com.hp.ucmdb.api.topology
Enum OnPropertiesLinkOp

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

public enum OnPropertiesLinkOp
extends java.lang.Enum<OnPropertiesLinkOp>
implements java.io.Serializable

Specifies the allowed operations in an OnPropertiesLink instance.

Since:
UCMDB 9.0
See Also:
OnPropertiesLink

Enum Constant Summary
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.
NOT_EQUAL
          Specifies the condition that the source and target properties are NOT equal to each other.
 
Method Summary
 java.lang.String toString()
           
static OnPropertiesLinkOp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OnPropertiesLinkOp[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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 Detail

values

public static OnPropertiesLinkOp[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (OnPropertiesLinkOp c : OnPropertiesLinkOp.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OnPropertiesLinkOp valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

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


Documentation Feedback
Copyright 2010 Hewlett-Packard Development Company, L.P.