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

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

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

The following schema fragment specifies the expected content contained within this class. *

 * <simpleType name="FileContentEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="LOU_FULL_INTERNAL"/>
 *     <enumeration value="LOU_DELTA_INTERNAL"/>
 *     <enumeration value="LOU_FULL_PUBLISHED"/>
 *     <enumeration value="LOU_DELTA_PUBLISHED"/>
 *     <enumeration value="GLEIF_FULL_INTERNAL"/>
 *     <enumeration value="GLEIF_DELTA_INTERNAL"/>
 *     <enumeration value="GLEIF_FULL_PUBLISHED"/>
 *     <enumeration value="GLEIF_DELTA_PUBLISHED"/>
 *     <enumeration value="QUERY_RESPONSE"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "FileContentEnum") @XmlEnum public enum FileContentEnum { /** * The file contains all relationship records created for * internal use by an LOU (all internal relationship records for which the LOU * is 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">ManagingLOU</code>
     * 
* ) as of the date/time the file is * created. * */ LOU_FULL_INTERNAL, /** * The file contains those relationship records created by an LOU * for internal use (all internal relationship records for which the LOU is 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">ManagingLOU</code>
     * 
* ) which are new or changed since 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">DeltaStart</code>
     * 
* specified in 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">Header</code>
     * 
* , as of the * date/time the file is created. * */ LOU_DELTA_INTERNAL, /** * The file contains all relationship records published by an LOU * (all relationship records for which the LOU is 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">ManagingLOU</code>
     * 
* ) * as of the date/time the file is created. * */ LOU_FULL_PUBLISHED, /** * The file contains those relationship records published by an * LOU (all relationship records for which the LOU is 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">ManagingLOU</code>
     * 
* ) which are new or changed since 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">DeltaStart</code>
     * 
* specified in 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">Header</code>
     * 
* , as of the * date/time the file is created * */ LOU_DELTA_PUBLISHED, /** * The file contains all relationship records GLEIF manages * internally to the GLEIS (including all internal relationship records from * all LOUs) as of the date/time the file is created. * */ GLEIF_FULL_INTERNAL, /** * The file contains those relationship records GLEIF manages * internally to the GLEIS (including all internal relationship records from * all LOUs) which are new or changed since 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">DeltaStart</code>
     * 
* date * specified in 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">Header</code>
     * 
* , as of the date/time the file is * created. * */ GLEIF_DELTA_INTERNAL, /** * The file contains all relationship records published by GLEIF * (including all relationship records from all LOUs) as of the date/time the * file is created. * */ GLEIF_FULL_PUBLISHED, /** * The file contains those relationship records published by * GLEIF (including all relationship records from all LOUs) which are new or * changed since 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">DeltaStart</code>
     * 
* date specified in 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">Header</code>
     * 
* , as of the date/time the file is * created. * */ GLEIF_DELTA_PUBLISHED, /** * The file contains records matching criteria specified in a * query. * */ QUERY_RESPONSE; public String value() { return name(); } public static FileContentEnum fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy