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 | package Torello.Java;
class CmprEQ
{
// This method remains 'protected' because it utilizes a specialized Loop-Control
// Variable Class Version of 'LV'. It is used internally by the search methods above.
static boolean eq(
final String srcStr,
final LV l,
final String compareStr
)
{
return
((l.end - l.start) == compareStr.length())
&& srcStr.regionMatches(l.start, compareStr, 0, compareStr.length());
}
// This method remains 'protected' because it utilizes a specialized Loop-Control
// Variable Class Version of 'LV'. It is used internally by the search methods above.
static boolean eq_CI(
final String srcStr,
final LV l,
final String compareStr
)
{
return
((l.end - l.start) == compareStr.length())
&& srcStr.regionMatches(true, l.start, compareStr, 0, compareStr.length());
}
}
|