aboutsummaryrefslogtreecommitdiffstats
path: root/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/EarlyExit.java
blob: decc5e739859e54e2d6a3343227f9b60296f7d6a (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.entity;


public class EarlyExit {
    protected int treeId;
    protected Operator operator;
    protected String value;

    public EarlyExit(int tid, Operator op, String val) {
        treeId = tid;
        operator = op;
        value = val;
    }

    public int getTreeId() {
        return treeId;
    }

    public String getValue() {
        return value;
    }

    public Operator getOperator() {
        return operator;
    }

}