com.northdata.schema.rr.gen.FileContentEnum 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 FileContentEnum.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <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);
}
}