morfeusz_javadoc.i
2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
%javamethodmodifiers morfeusz::Morfeusz::createInstance "
/**
* Creates actual instance of Morfeusz class.
*
* @return Morfeusz instance
*/
public synchronized";
%javamethodmodifiers morfeusz::Morfeusz::getVersion() "
/**
* Returns a string containing library version.
* @return library version string
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::analyseAsIterator(const char*) const "
/**
* Analyze given text and return the results as iterator.
* It does not store results for whole text at once, so may be less memory-consuming for analysis of big texts.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param text text for morphological analysis.
* @return iterator over morphological analysis results
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::setAggl(const std::string&) "
/**
* Set aggl segmentation option value.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param aggl aggl value
* @throws MorfeuszException when invalid aggl parameter provided
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::setPraet(const std::string&) "
/**
* Set praet segmentation option value.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param praet praet value
* @throws MorfeuszException when invalid praet parameter provided
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::setCaseHandling(CaseHandling) "
/**
* Set case handling.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param caseHandling case handling policy
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::setTokenNumbering(TokenNumbering) "
/**
* Set token numbering policy.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param numbering token numbering policy
*/
public";
%javamethodmodifiers morfeusz::Morfeusz::setWhitespaceHandling(WhitespaceHandling) "
/**
* Set whitespace handling.
*
* NOT THREAD-SAFE (must have exclusive access to this instance).
*
* @param whitespaceHandling whitespace handling policy
*/
public";