com.labs64.netlicensing.domain.vo.WarningLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
The newest version!
package com.labs64.netlicensing.domain.vo;
public enum WarningLevel {
GREEN,
YELLOW,
RED;
public static WarningLevel parseString(final String warningLevelStr) {
if (warningLevelStr != null) {
for (final WarningLevel warningLevel : WarningLevel.values()) {
if (warningLevelStr.equals(warningLevel.name())) {
return warningLevel;
}
}
}
return null;
}
}