
com.lyncode.choiceprops.element.IntegerContainable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plural-property Show documentation
Show all versions of plural-property Show documentation
Plural Properties by Lyncode
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