Enum EventProps.Jenkins

    • Enum Constant Detail

      • jenkins_org

        public static final EventProps.Jenkins jenkins_org
        The Jenkins organization origin of the event.
      • jenkins_instance_id

        public static final EventProps.Jenkins jenkins_instance_id
        The ID of the Jenkins instance that published the message.
      • jenkins_instance_url

        public static final EventProps.Jenkins jenkins_instance_url
        The URL of the Jenkins instance that published the message.
      • jenkins_channel

        public static final EventProps.Jenkins jenkins_channel
        The event channel name on which the message was sent.
      • jenkins_event_timestamp

        public static final EventProps.Jenkins jenkins_event_timestamp
        The millisecond timestamp for when the event happened.

        Of course, this does not preclude the event message from containing other timestamp event properties, where appropriate.

      • jenkins_event_uuid

        public static final EventProps.Jenkins jenkins_event_uuid
        The event UUID.
      • jenkins_object_type

        public static final EventProps.Jenkins jenkins_object_type
        Jenkins domain object type.
      • jenkins_object_name

        public static final EventProps.Jenkins jenkins_object_name
        Jenkins domain object full name.
      • jenkins_object_id

        public static final EventProps.Jenkins jenkins_object_id
        Jenkins domain object unique ID.
      • jenkins_object_url

        public static final EventProps.Jenkins jenkins_object_url
        Jenkins domain object URL.
    • Method Detail

      • values

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

        public static EventProps.Jenkins 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