Class SchemaRequest.AddCopyField

All Implemented Interfaces:
Serializable
Enclosing class:
SchemaRequest

public static class SchemaRequest.AddCopyField extends SchemaRequest.Update
Adds a new copy field rule to the schema of the specified collection.
See Also:
  • Constructor Details

    • AddCopyField

      public AddCopyField(String source, List<String> dest)
      Creates a new instance of the request.
      Parameters:
      source - the source field name
      dest - the collection of the destination field names
      See Also:
    • AddCopyField

      public AddCopyField(String source, List<String> dest, Integer maxChars)
      Creates a new instance of the request.
      Parameters:
      source - the source field name
      dest - the collection of the destination field names
      maxChars - the number of characters to be copied from the source to the dest. Specifying 0 as value, means that all the source characters will be copied to the dest.
      See Also:
    • AddCopyField

      public AddCopyField(String source, List<String> dest, SolrParams q)
    • AddCopyField

      public AddCopyField(String source, List<String> dest, Integer maxChars, SolrParams q)
  • Method Details