Package com.alibaba.daybits

Examples of com.alibaba.daybits.DayBits.explain()


        if (daybits == null) {
            return null;
        }

        return daybits.explain(startDate, endDate);
    }
}
View Full Code Here


    public String evaluate(String text) {
        DayBits daybits = DayBitsUtils.parse(text);
        if (daybits == null) {
            return null;
        }
        return daybits.explain();
    }

    public String evaluate(String text, String startDate) {
        return evaluate(text, startDate, null);
    }
View Full Code Here

        if (daybits == null) {
            return null;
        }

        return daybits.explain(startDate, endDate);
    }

    public String evaluate(String text, Long startDate) {
        return evaluate(text, startDate, null);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.