package ca.joeltherrien.randomforest.tree; import ca.joeltherrien.randomforest.Row; import lombok.Data; import java.util.List; /** * Very simple class that contains three lists; it's essentially a thruple. * * @author joel * */ @Data public class Split { public final List> leftHand; public final List> rightHand; public final List> naHand; }