com.labs64.netlicensing.domain.vo.Event 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;
import java.util.Arrays;
public enum Event {
LICENSEE_CREATED,
LICENSE_CREATED,
WARNING_LEVEL_CHANGED;
public static Event parseString(final String value) {
return Arrays.stream(Event.values()).filter((e) -> e.name().equalsIgnoreCase(value)).findFirst().orElse(null);
}
}