atg.search.routing.command.search
Class OpType

java.lang.Object
  extended by atg.core.util.Enum
      extended by atg.search.routing.command.search.OpType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public class OpType
extends Enum

Operaption type enum for RankingGroupOp.

See Also:
Serialized Form

Nested Class Summary
static class OpType.OpTypeEditor
           
 
Nested classes/interfaces inherited from class atg.core.util.Enum
Enum.EnumEditor, Enum.LocaleEnumEditor
 
Field Summary
static OpType ADD
          Add this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)
static OpType ASSIGN
          Assign the ranking score to this value, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)
static java.lang.String CLASS_VERSION
          Class version string
static OpType DIVIDE
          Add this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)
static OpType MULTIPLY
          Multiply this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)
static OpType SUBTRACT
          Subtract this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)
 
Method Summary
static OpType valueOf(java.lang.String pName)
           
 
Methods inherited from class atg.core.util.Enum
compareTo, getEnumClassInfo, getOrdinal, iterator, iterator, lookup, lookup, lookup, lookup, readResolve, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string


ASSIGN

public static final OpType ASSIGN
Assign the ranking score to this value, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)


ADD

public static final OpType ADD
Add this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)


SUBTRACT

public static final OpType SUBTRACT
Subtract this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)


MULTIPLY

public static final OpType MULTIPLY
Multiply this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)


DIVIDE

public static final OpType DIVIDE
Add this value to the ranking score, which can be a floating point constant (0-1000); $relevance (for the internal statement relevancy score); $weight (for the internal document relevancy score); and $size (for the size of the result group)

Method Detail

valueOf

public static OpType valueOf(java.lang.String pName)