Package org.tartarus.snowball.ext
Class finnishStemmer
- java.lang.Object
-
- org.tartarus.snowball.SnowballProgram
-
- org.tartarus.snowball.SnowballStemmer
-
- org.tartarus.snowball.ext.finnishStemmer
-
- All Implemented Interfaces:
java.io.Serializable
public class finnishStemmer 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 Among[]
a_5
private static Among[]
a_6
private static Among[]
a_7
private static Among[]
a_8
private static Among[]
a_9
private boolean
B_ending_removed
private static char[]
g_AEI
private static char[]
g_C
private static char[]
g_particle_end
private static char[]
g_V1
private static char[]
g_V2
private int
I_p1
private int
I_p2
private java.lang.StringBuilder
S_x
private static long
serialVersionUID
-
Fields inherited from class org.tartarus.snowball.SnowballProgram
bra, current, cursor, ket, limit, limit_backward
-
-
Constructor Summary
Constructors Constructor Description finnishStemmer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
private boolean
r_case_ending()
private boolean
r_i_plural()
boolean
r_LONG()
private boolean
r_mark_regions()
private boolean
r_other_endings()
private boolean
r_particle_etc()
private boolean
r_possessive()
private boolean
r_R2()
private boolean
r_t_plural()
private boolean
r_tidy()
boolean
r_VI()
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
-
a_5
private static final Among[] a_5
-
a_6
private static final Among[] a_6
-
a_7
private static final Among[] a_7
-
a_8
private static final Among[] a_8
-
a_9
private static final Among[] a_9
-
g_AEI
private static final char[] g_AEI
-
g_C
private static final char[] g_C
-
g_V1
private static final char[] g_V1
-
g_V2
private static final char[] g_V2
-
g_particle_end
private static final char[] g_particle_end
-
B_ending_removed
private boolean B_ending_removed
-
S_x
private java.lang.StringBuilder S_x
-
I_p2
private int I_p2
-
I_p1
private int I_p1
-
-
Method Detail
-
r_mark_regions
private boolean r_mark_regions()
-
r_R2
private boolean r_R2()
-
r_particle_etc
private boolean r_particle_etc()
-
r_possessive
private boolean r_possessive()
-
r_LONG
public boolean r_LONG()
-
r_VI
public boolean r_VI()
-
r_case_ending
private boolean r_case_ending()
-
r_other_endings
private boolean r_other_endings()
-
r_i_plural
private boolean r_i_plural()
-
r_t_plural
private boolean r_t_plural()
-
r_tidy
private boolean r_tidy()
-
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
-
-