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

prerna.date.SemossDay Maven / Gradle / Ivy

The newest version!
package prerna.date;

public class SemossDay {

	private int numDays = 1;
	
	public SemossDay(String numDays) {
		if(numDays != null) {
			this.numDays = Integer.parseInt(numDays);
		}
	}
	
	public SemossDay(int numDays) {
		this.numDays = numDays;
	}
	
	public int getNumDays() {
		return this.numDays;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy