brooklyn.util.internal.IntegerSystemProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-utils-common Show documentation
Show all versions of brooklyn-utils-common Show documentation
Utility classes and methods developed for Brooklyn but not dependendent on Brooklyn or much else
package brooklyn.util.internal;
public class IntegerSystemProperty extends BasicDelegatingSystemProperty {
public IntegerSystemProperty(String name) {
super(name);
}
public int getValue() {
return Integer.parseInt(delegate.getValue());
}
}