Enum Class EventType

java.lang.Object
java.lang.Enum<EventType>
io.jenkins.plugins.harbor.action.model.EventType
All Implemented Interfaces:
Serializable, Comparable<EventType>, Constable

public enum EventType extends Enum<EventType>
WebHook Event Type
See Also:
  • Enum Constant Details

    • CREATE_PROJECT

      public static final EventType CREATE_PROJECT
    • DELETE_PROJECT

      public static final EventType DELETE_PROJECT
    • PUSH_ARTIFACT

      public static final EventType PUSH_ARTIFACT
    • PULL_ARTIFACT

      public static final EventType PULL_ARTIFACT
    • DELETE_ARTIFACT

      public static final EventType DELETE_ARTIFACT
    • DELETE_REPOSITORY

      public static final EventType DELETE_REPOSITORY
    • CREATE_TAG

      public static final EventType CREATE_TAG
    • DELETE_TAG

      public static final EventType DELETE_TAG
    • SCANNING_FAILED

      public static final EventType SCANNING_FAILED
    • SCANNING_STOPPED

      public static final EventType SCANNING_STOPPED
    • SCANNING_COMPLETED

      public static final EventType SCANNING_COMPLETED
  • Method Details

    • values

      public static EventType[] 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 EventType 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
    • getEventType

      public String getEventType()