atg.search.routing.command.search
Class CategorizeRequest.CategorizeInputMode

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

public static class CategorizeRequest.CategorizeInputMode
extends Enum

The mode value can be one of four values. A value of text means that the input content is simple text. A value of question means that the input content is simple user input text. A value of xhtml means that the input content is structured text. And a value of document means that the input content is a pathname to a file of formatted text. The default value is document. See SearchPropertyEditors.

See Also:
Serialized Form

Nested Class Summary
static class CategorizeRequest.CategorizeInputMode.CategorizeInputModeEditor
           
 
Nested classes/interfaces inherited from class atg.core.util.Enum
Enum.EnumEditor, Enum.LocaleEnumEditor
 
Field Summary
static java.lang.String CLASS_VERSION
          Class version string
static CategorizeRequest.CategorizeInputMode DOCUMENT
          The input content is a pathname to a file of formatted text.
static CategorizeRequest.CategorizeInputMode QUESTION
          Tnput content is simple user input text.
static CategorizeRequest.CategorizeInputMode TEXT
          The input content is simple text.
static CategorizeRequest.CategorizeInputMode XHTML
          The input content is structured text
 
Method Summary
static java.util.Iterator getIterator()
           
static CategorizeRequest.CategorizeInputMode valueOf(java.lang.String pName)
          Method to get the enumerated value object for the given string.
 
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 final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values

QUESTION

public static final CategorizeRequest.CategorizeInputMode QUESTION
Tnput content is simple user input text.


DOCUMENT

public static final CategorizeRequest.CategorizeInputMode DOCUMENT
The input content is a pathname to a file of formatted text. This is the default in the engine.


XHTML

public static final CategorizeRequest.CategorizeInputMode XHTML
The input content is structured text


TEXT

public static final CategorizeRequest.CategorizeInputMode TEXT
The input content is simple text.

Method Detail

valueOf

public static CategorizeRequest.CategorizeInputMode valueOf(java.lang.String pName)
Method to get the enumerated value object for the given string.

Parameters:
pName - String name to lookup.
Returns:
Enum for the given name.

getIterator

public static java.util.Iterator getIterator()