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

prerna.date.SemossMonth Maven / Gradle / Ivy

The newest version!
package prerna.date;

public class SemossMonth {

	private int numMonths = 1;
	
	public SemossMonth(String numMonths) {
		if(numMonths != null) {
			this.numMonths = Integer.parseInt(numMonths);
		}
	}
	
	public SemossMonth(int numMonths) {
		this.numMonths = numMonths;
	}
	
	public int getNumMonths() {
		return this.numMonths;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy