All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gitlab.schedule4j.cron.part.MonthPart Maven / Gradle / Ivy

Go to download

Library for parsing cron expressions and calculate time points from cron expressions

The newest version!
/*
 * Created on 2010-02-28
 * 
 * Copyright 2010 Dirk Buchhorn
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.gitlab.schedule4j.cron.part;

import io.gitlab.schedule4j.cron.CronResult;
import io.gitlab.schedule4j.cron.subpart.CronSubpart;

import java.time.ZonedDateTime;
import java.time.temporal.TemporalAdjusters;

/**
 * @author Dirk Buchhorn
 */
public class MonthPart extends CronPart
{

	public MonthPart(CronSubpart cronSubpart)
	{
		super(cronSubpart);
	}

	@Override
	public ZonedDateTime calculateNext(ZonedDateTime dateTime)
	{
		CronResult cronResult = getCronSubpart().getNext(dateTime);
		// first set the day of month to one, to prevent an switch over to the next month
		ZonedDateTime dt = dateTime.with(TemporalAdjusters.firstDayOfMonth()).withMonth(cronResult.getNumber())
			.withHour(0).withMinute(0).withSecond(0).withNano(0);
		if (cronResult.getAddCarry() != 0)
		{
			dt = dt.plusYears(cronResult.getAddCarry());
		}
		return dt;
	}

	@Override
	public ZonedDateTime calculatePrevious(ZonedDateTime dateTime)
	{
		CronResult cronResult = getCronSubpart().getPrevious(dateTime);
		// first set the day of month to one, to prevent an switch over to the next month
		ZonedDateTime dt = dateTime.with(TemporalAdjusters.firstDayOfMonth()).withMonth(cronResult.getNumber())
			.withHour(23).withMinute(59).withSecond(59).withNano(0);
		if (cronResult.getAddCarry() != 0)
		{
			dt = dt.plusYears(cronResult.getAddCarry());
		}
		dt = dt.with(TemporalAdjusters.lastDayOfMonth());
		return dt;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy