com.northdata.schema.rr.gen.RelationshipStatusEnum 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 RelationshipStatusEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <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);
}
}