Enum EventOrigin

    • Enum Constant Detail

      • ASPSP

        public static final EventOrigin ASPSP
        Event generated by the request from the ASPSP.
      • TPP

        public static final EventOrigin TPP
        Event generated by the TPP request to XS2A.
      • ASPSP_PSU_INTERFACE

        public static final EventOrigin ASPSP_PSU_INTERFACE
        Event generated by the request from the ASPSP PSU interface.
      • XS2A_INTERNAL

        public static final EventOrigin XS2A_INTERNAL
        Internal XS2A event.
    • Method Detail

      • values

        public static EventOrigin[] 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 (EventOrigin c : EventOrigin.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventOrigin 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