Enum StandardRoleType

  • All Implemented Interfaces:
    Serializable, Comparable<StandardRoleType>

    public enum StandardRoleType
    extends Enum<StandardRoleType>
    Electronic Data Interchange. Identification of the role played by a party. https://www.entsoe.eu/publications/electronic-data-interchange-edi-library/
    Author:
    Thomas Adam <tadam at silicom.fr>
    • Enum Constant Detail

      • A32

        public static final StandardRoleType A32
        Market information aggregator. Refer to role model definitions in the ENTSO-E Harmonised Role Model Document. A party that collects information from different sources and assembles it to provide a summary of the market.
      • A33

        public static final StandardRoleType A33
        Information receiver. Refer to role model definitions in the ENTSO-E Harmonised Role Model Document. A party, not necessarily a market participant, which receives information about the market.
      • A36

        public static final StandardRoleType A36
        Refer to role model definitions in the ENTSO-E Harmonised Role Model Document. A party, acting on behalf of the SOs involved, responsible for establishing a coordinated Offered Capacity and/or NTC and/or ATC between several Market Balance Areas.
      • A39

        public static final StandardRoleType A39
        A party that is responsible for providing information to a central authority.
      • A44

        public static final StandardRoleType A44
        The RSC as defined in the System Operation guideline.
    • Method Detail

      • values

        public static StandardRoleType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StandardRoleType c : StandardRoleType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StandardRoleType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getDescription

        public String getDescription()