com.rosetta.jptlegalagreement.model.GoverningLawEnum Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model;
import com.rosetta.jptlegalagreement.model.GoverningLawEnum;
import com.rosetta.model.lib.annotations.RosettaEnum;
import com.rosetta.model.lib.annotations.RosettaEnumValue;
import java.util.Collections;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* @version test
*/
@RosettaEnum("GoverningLawEnum")
public enum GoverningLawEnum {
/**
* Delaware law
*/
@RosettaEnumValue(value = "USDE")
USDE("USDE", null),
/**
* Illinois law
*/
@RosettaEnumValue(value = "USIL")
USIL("USIL", null),
/**
* New York law
*/
@RosettaEnumValue(value = "USNY")
USNY("USNY", null)
;
private static Map values;
static {
Map map = new ConcurrentHashMap<>();
for (GoverningLawEnum instance : GoverningLawEnum.values()) {
map.put(instance.toDisplayString(), instance);
}
values = Collections.unmodifiableMap(map);
}
private final String rosettaName;
private final String displayName;
GoverningLawEnum(String rosettaName, String displayName) {
this.rosettaName = rosettaName;
this.displayName = displayName;
}
public static GoverningLawEnum fromDisplayName(String name) {
GoverningLawEnum value = values.get(name);
if (value == null) {
throw new IllegalArgumentException("No enum constant with display name \"" + name + "\".");
}
return value;
}
@Override
public String toString() {
return toDisplayString();
}
public String toDisplayString() {
return displayName != null ? displayName : rosettaName;
}
}