kss.util.IntToBool Maven / Gradle / Ivy
The newest version!
package kss.util;
/*
* Korean Sentence Splitter
* Split Korean text into sentences using heuristic algorithm.
*
* Copyright (C) 2021 Sang-ji Lee
* Copyright (C) 2021 Hyun-woong Ko and Sang-Kil Park
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. See the LICENSE file for details.
*/
public class IntToBool {
/**
*
* @param input
* @return
*/
public static boolean intToBool(int input) {
return input >= 1;
}
}