summaryrefslogtreecommitdiffstats
path: root/fsa/src/main/java/com/yahoo/fsa/segmenter/Segment.java
blob: 1e424372a6649ac80b38cbbd2dc30be61a5ca243 (plain) (blame)
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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.fsa.segmenter;

/**
 * Class encapsulation of a segment.
 *
 * @author  <a href="mailto:boros@yahoo-inc.com">Peter Boros</a>
 */
public class Segment {

    int   _beg;
    int   _end;
    int   _conn;

    public Segment(int b, int e, int c)
    {
      _beg  = b;
      _end  = e;
      _conn = c;
    }

    public int beg()
    {
      return _beg;
    }

    public int end()
    {
      return _end;
    }

    public int len()
    {
      return _end-_beg;
    }

    public int conn()
    {
      return _conn;
    }

}