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

com.northdata.schema.rr.gen.RelationshipStatusEnum Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
//
// 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 RelationshipStatusEnum. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

 * <simpleType name="RelationshipStatusEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ACTIVE"/>
 *     <enumeration value="INACTIVE"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RelationshipStatusEnum") @XmlEnum public enum RelationshipStatusEnum { /** * As of the last report or update, the reporting legal entity * reported that it is legally registered and/or operating, AND that 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>
     * 
* is still * valid. * */ ACTIVE, /** * It has been determined that the relationship ended, e.g. * because entity that reported this relationship is no longer legally * registered and/or operating; or the relationship is no longer valid for * other reasons. * */ INACTIVE; public String value() { return name(); } public static RelationshipStatusEnum fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy