I am investigating WordDelimiterFilterFactory
I am confusing about generateWordParts
and splitOnCaseChange
parameters.
from java doc:
generateWordParts:
/**
* Causes parts of words to be generated:
* <p>
* "PowerShot" => "Power" "Shot"
*/
public static final int GENERATE_WORD_PARTS = 1;
splitOnCaseChange:
/**
* If not set, causes case changes to be ignored (subwords will only be generated
* given SUBWORD_DELIM tokens)
*/
public static final int SPLIT_ON_CASE_CHANGE = 64;
Can you show example which clarify the difference?
P.S.
Also I don't understanf menaning of SUBWORD_DELIM