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

com.lyncode.choiceprops.element.IntegerContainable Maven / Gradle / Ivy

The newest version!
package com.lyncode.choiceprops.element;

public class IntegerContainable implements IContainable {
	private Integer i;
	
	public IntegerContainable (String v) {
		i = Integer.parseInt(v);
	}
	
	public IntegerContainable (int t) {
		i = t;
	}
	
	public boolean in(int value) {
		return (value == i);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy