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
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2019.12.16 um 04:23:42 PM CET
//
package com.northdata.schema.rr.gen;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für QualifierDimensionEnum.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <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);
}
}