cdm.observable.event.IndexEventConsequenceEnum Maven / Gradle / Ivy
package cdm.observable.event;
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;
/**
* The enumerated values to specify the consequences of Index Events.
* @version 5.0.1
*/
@RosettaEnum("IndexEventConsequenceEnum")
public enum IndexEventConsequenceEnum {
/**
* Calculation Agent Adjustment.
*/
@RosettaEnumValue(value = "CalculationAgentAdjustment") CALCULATION_AGENT_ADJUSTMENT("CalculationAgentAdjustment"),
/**
* Negotiated Close Out.
*/
@RosettaEnumValue(value = "NegotiatedCloseOut") NEGOTIATED_CLOSE_OUT("NegotiatedCloseOut"),
/**
* Cancellation and Payment.
*/
@RosettaEnumValue(value = "CancellationAndPayment") CANCELLATION_AND_PAYMENT("CancellationAndPayment"),
/**
* Related Exchange.
*/
@RosettaEnumValue(value = "RelatedExchange") RELATED_EXCHANGE("RelatedExchange")
;
private static Map values;
static {
Map map = new ConcurrentHashMap<>();
for (IndexEventConsequenceEnum instance : IndexEventConsequenceEnum.values()) {
map.put(instance.toDisplayString(), instance);
}
values = Collections.unmodifiableMap(map);
}
private final String rosettaName;
private final String displayName;
IndexEventConsequenceEnum(String rosettaName) {
this(rosettaName, null);
}
IndexEventConsequenceEnum(String rosettaName, String displayName) {
this.rosettaName = rosettaName;
this.displayName = displayName;
}
public static IndexEventConsequenceEnum fromDisplayName(String name) {
IndexEventConsequenceEnum 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