All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdm.event.common.RegIMRoleEnum Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
package cdm.event.common;

import cdm.event.common.RegIMRoleEnum;
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;


/**
 * Represents the enumeration values to specify the role of the party in relation to a regulatory initial margin call.
 * @version 6.0.0-dev.82
 */
@RosettaEnum("RegIMRoleEnum")
public enum RegIMRoleEnum {

	/**
	 * Indicates 'Pledgor' party of initial margin call.
	 */
	@RosettaEnumValue(value = "Pledgor") 
	PLEDGOR("Pledgor", null),
	
	/**
	 * Indicates 'Secured' party of initial margin call.
	 */
	@RosettaEnumValue(value = "Secured") 
	SECURED("Secured", null)
;
	private static Map values;
	static {
        Map map = new ConcurrentHashMap<>();
		for (RegIMRoleEnum instance : RegIMRoleEnum.values()) {
			map.put(instance.toDisplayString(), instance);
		}
		values = Collections.unmodifiableMap(map);
    }

	private final String rosettaName;
	private final String displayName;

	RegIMRoleEnum(String rosettaName, String displayName) {
		this.rosettaName = rosettaName;
		this.displayName = displayName;
	}

	public static RegIMRoleEnum fromDisplayName(String name) {
		RegIMRoleEnum 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;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy