Skip to content

Instantly share code, notes, and snippets.

View GTRONICK's full-sized avatar

Jaime Quiroga GTRONICK

View GitHub Profile
@GTRONICK
GTRONICK / HolidayUtil.java
Last active October 30, 2020 14:51 — forked from marlonramirez/HolidayUtil.java
Gestión de fechas en colombia, días habiles, festivos, etc.
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
public class HolidayUtil {
private int year;
private int easterMonth;
private int easterDay;
private ArrayList<String> holidays;