Package org.tartarus.snowball.ext
Class indonesianStemmer
- java.lang.Object
-
- org.tartarus.snowball.SnowballProgram
-
- org.tartarus.snowball.SnowballStemmer
-
- org.tartarus.snowball.ext.indonesianStemmer
-
- All Implemented Interfaces:
java.io.Serializable
public class indonesianStemmer extends SnowballStemmer
This class implements the stemming algorithm defined by a snowball script.Generated by Snowball 2.2.0 - https://snowballstem.org/
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static Among[]
a_0
private static Among[]
a_1
private static Among[]
a_2
private static Among[]
a_3
private static Among[]
a_4
private static char[]
g_vowel
private int
I_measure
private int
I_prefix
private static long
serialVersionUID
-
Fields inherited from class org.tartarus.snowball.SnowballProgram
bra, current, cursor, ket, limit, limit_backward
-
-
Constructor Summary
Constructors Constructor Description indonesianStemmer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
boolean
r_KER()
private boolean
r_remove_first_order_prefix()
private boolean
r_remove_particle()
private boolean
r_remove_possessive_pronoun()
private boolean
r_remove_second_order_prefix()
private boolean
r_remove_suffix()
boolean
r_SUFFIX_AN_OK()
boolean
r_SUFFIX_I_OK()
boolean
r_SUFFIX_KAN_OK()
boolean
r_VOWEL()
boolean
stem()
-
Methods inherited from class org.tartarus.snowball.SnowballProgram
assign_to, copy_from, eq_s, eq_s_b, find_among, find_among_b, getCurrent, in_grouping, in_grouping_b, insert, insert, out_grouping, out_grouping_b, replace_s, setCurrent, slice_check, slice_del, slice_from, slice_from, slice_to
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
a_0
private static final Among[] a_0
-
a_1
private static final Among[] a_1
-
a_2
private static final Among[] a_2
-
a_3
private static final Among[] a_3
-
a_4
private static final Among[] a_4
-
g_vowel
private static final char[] g_vowel
-
I_prefix
private int I_prefix
-
I_measure
private int I_measure
-
-
Method Detail
-
r_remove_particle
private boolean r_remove_particle()
-
r_remove_possessive_pronoun
private boolean r_remove_possessive_pronoun()
-
r_SUFFIX_KAN_OK
public boolean r_SUFFIX_KAN_OK()
-
r_SUFFIX_AN_OK
public boolean r_SUFFIX_AN_OK()
-
r_SUFFIX_I_OK
public boolean r_SUFFIX_I_OK()
-
r_remove_suffix
private boolean r_remove_suffix()
-
r_VOWEL
public boolean r_VOWEL()
-
r_KER
public boolean r_KER()
-
r_remove_first_order_prefix
private boolean r_remove_first_order_prefix()
-
r_remove_second_order_prefix
private boolean r_remove_second_order_prefix()
-
stem
public boolean stem()
- Specified by:
stem
in classSnowballStemmer
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-