java.lang.Object
org.codelibs.fess.app.web.admin.dict.stemmeroverride.CreateForm
Direct Known Subclasses:
CreateBody, EditForm

public class CreateForm extends Object
Form class for creating new stemmer override dictionary entries. This form handles the creation of stemmer override rules that modify the stemming behavior for specific words.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The CRUD operation mode for form processing
    @Required String
    The dictionary ID to which this stemmer override entry belongs
    @Required @Size(max=1000) String
    The input word that should be stemmed differently
    @Required @Size(max=1000) String
    The desired stem output for the input word
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new CreateForm instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initializes the form with default values for creating a new stemmer override entry.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • dictId

      @Required public @Required String dictId
      The dictionary ID to which this stemmer override entry belongs
    • crudMode

      @ValidateTypeFailure public Integer crudMode
      The CRUD operation mode for form processing
    • input

      @Required @Size(max=1000) public @Required @Size(max=1000) String input
      The input word that should be stemmed differently
    • output

      @Required @Size(max=1000) public @Required @Size(max=1000) String output
      The desired stem output for the input word
  • Constructor Details

    • CreateForm

      public CreateForm()
      Creates a new CreateForm instance.
  • Method Details

    • initialize

      public void initialize()
      Initializes the form with default values for creating a new stemmer override entry.