Enum Class StandardEicTypeList

java.lang.Object
java.lang.Enum<StandardEicTypeList>
eu.entsoe.wgedi.codelists.StandardEicTypeList
All Implemented Interfaces:
Serializable, Comparable<StandardEicTypeList>, Constable

public enum StandardEicTypeList extends Enum<StandardEicTypeList>

Java class for StandardEicTypeList.

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

 <simpleType name="StandardEicTypeList">
   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
     <enumeration value="A"/>
     <enumeration value="T"/>
     <enumeration value="V"/>
     <enumeration value="W"/>
     <enumeration value="X"/>
     <enumeration value="Y"/>
     <enumeration value="Z"/>
   </restriction>
 </simpleType>
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Substation</Title><Definition>An EIC code to substations.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Tieline</Title><Definition>An EIC code to identify tielines.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Location</Title><Definition>An EIC code to identify locations.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Resource Object</Title><Definition>An EIC code to identify resource objects.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Party</Title><Definition>An EIC code to identify parties.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Area or Domain</Title><Definition>An EIC code to identify areas or domains.</Definition></CodeDescription>
    <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Measurement point</Title><Definition>An EIC code to identify measurement points.</Definition></CodeDescription>
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • A

      public static final StandardEicTypeList A
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Substation</Title><Definition>An EIC code to substations.</Definition></CodeDescription>
       
    • T

      public static final StandardEicTypeList T
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Tieline</Title><Definition>An EIC code to identify tielines.</Definition></CodeDescription>
       
    • V

      public static final StandardEicTypeList V
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Location</Title><Definition>An EIC code to identify locations.</Definition></CodeDescription>
       
    • W

      public static final StandardEicTypeList W
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Resource Object</Title><Definition>An EIC code to identify resource objects.</Definition></CodeDescription>
       
    • X

      public static final StandardEicTypeList X
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Party</Title><Definition>An EIC code to identify parties.</Definition></CodeDescription>
       
    • Y

      public static final StandardEicTypeList Y
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Area or Domain</Title><Definition>An EIC code to identify areas or domains.</Definition></CodeDescription>
       
    • Z

      public static final StandardEicTypeList Z
       <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>Measurement point</Title><Definition>An EIC code to identify measurement points.</Definition></CodeDescription>
       
  • Method Details

    • values

      public static StandardEicTypeList[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StandardEicTypeList valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static StandardEicTypeList fromValue(String v)