com.northdata.schema.rr.gen.QualifierDimensionEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lei Show documentation
Show all versions of lei Show documentation
JAXB Bindings for LEI schemas
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.12.22 at 12:40:14 PM UTC
//
package com.northdata.schema.rr.gen;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for QualifierDimensionEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="QualifierDimensionEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ACCOUNTING_STANDARD"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "QualifierDimensionEnum")
@XmlEnum
public enum QualifierDimensionEnum {
/**
* The accounting standard applied to determine the definition of
* e.g. ultimate or direct accounting consolidating parent for the relationship
* detailed in this
*
* <?xml version="1.0" encoding="UTF-8"?><code xmlns:rr="http://www.gleif.org/data/schema/rr/2016" xmlns:xs="http://www.w3.org/2001/XMLSchema">RelationshipRecord</code>
*
* . The relevant accounting
* standard is that applicable to the
*
* <?xml version="1.0" encoding="UTF-8"?><code xmlns:rr="http://www.gleif.org/data/schema/rr/2016" xmlns:xs="http://www.w3.org/2001/XMLSchema">EndNode</code>
*
* (the "parent"
* entity).
*
*/
ACCOUNTING_STANDARD;
public String value() {
return name();
}
public static QualifierDimensionEnum fromValue(String v) {
return valueOf(v);
}
}