Java Day of Work getRemainingWorkingMonth(Date taxdate)

Here you can find the source of getRemainingWorkingMonth(Date taxdate)

Description

get Remaining Working Month

License

Open Source License

Declaration

public static int getRemainingWorkingMonth(Date taxdate) 

Method Source Code

//package com.java2s;
/*//from ww w  .  jav a2  s .c om
 * Copyright (C) 2012  Krawler Information Systems Pvt Ltd
 * All rights reserved.
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

import java.util.Calendar;
import java.util.Date;

public class Main {
    public static int getRemainingWorkingMonth(Date taxdate) {

        Calendar calendar = Calendar.getInstance();
        calendar.setTime(taxdate);
        int month = calendar.get(Calendar.MONTH) + 1;

        return 12 - month;
    }
}

Related

  1. addWorkdays(Date date, int workdayOffset)
  2. addWorkingDays(Date start, int workingDays)
  3. getWorkDay(Date d1, Date d2, int[] freeDays)
  4. isWorkDay(Date data)
  5. isWorkDay(Date date)
  6. isWorkday(Date date)