Package org.jenkinsci.plugins.pubsub
Enum Class EventProps.Jenkins
- All Implemented Interfaces:
Serializable
,Comparable<EventProps.Jenkins>
,Constable
- Enclosing interface:
EventProps
Pre-defined Jenkins/core event property names.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe event channel name on which the message was sent.The event name.The millisecond timestamp for when the event happened.The event UUID.The ID of the Jenkins instance that published the message.The URL of the Jenkins instance that published the message.Jenkins domain object unique ID.Jenkins domain object full name.Jenkins domain object type.Jenkins domain object URL.The Jenkins organization origin of the event. -
Method Summary
Modifier and TypeMethodDescriptionstatic EventProps.Jenkins
Returns the enum constant of this class with the specified name.static EventProps.Jenkins[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
jenkins_org
The Jenkins organization origin of the event. -
jenkins_instance_id
The ID of the Jenkins instance that published the message. -
jenkins_instance_url
The URL of the Jenkins instance that published the message. -
jenkins_channel
The event channel name on which the message was sent. -
jenkins_event
The event name. SeeEvents
for pre-defined types. -
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
The event UUID. -
jenkins_object_type
Jenkins domain object type. -
jenkins_object_name
Jenkins domain object full name. -
jenkins_object_id
Jenkins domain object unique ID. -
jenkins_object_url
Jenkins domain object URL.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-