Class OperandDescriptor

java.lang.Object
COM.TIBCO.hawk.config.rbengine.rulebase.OperandDescriptor
Direct Known Subclasses:
VariableOperandDescriptor

public class OperandDescriptor extends Object
Used to describe operands
  • Field Details

    • CNAME

      public static String CNAME
  • Constructor Details

    • OperandDescriptor

      public OperandDescriptor(String name, String type, String desc)
      Constructs an OperandDescriptor
      Parameters:
      name - the name of the operand
      type - the fully quallified classname of the operand's type
      desc - a description of the operand's purpose
      Throws:
      IllegalArgumentException - if any of the arguments are null
  • Method Details

    • getName

      public String getName()
      Retrieves the operand name
    • getType

      public String getType()
      Retrieves the operand type
    • getDescription

      public String getDescription()
      Retrieves the operand description
    • toString

      public String toString()
      Returns a string representation of this object
      Overrides:
      toString in class Object