Enum DeliveryActivity

  • All Implemented Interfaces:
    com.xebialabs.xlrelease.activity.ActivityOps, java.io.Serializable, java.lang.Comparable<DeliveryActivity>

    public enum DeliveryActivity
    extends java.lang.Enum<DeliveryActivity>
    implements com.xebialabs.xlrelease.activity.ActivityOps
    • Method Detail

      • values

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

        public static DeliveryActivity valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • create

        public com.xebialabs.xlrelease.domain.ActivityLogEntry create​(java.util.Date eventTime,
                                                                      java.lang.String username,
                                                                      com.xebialabs.deployit.plugin.api.reflect.Type targetType,
                                                                      java.lang.String targetId,
                                                                      java.lang.Object... parameters)
      • create

        public com.xebialabs.xlrelease.domain.ActivityLogEntry create​(com.xebialabs.xlrelease.delivery.events.DeliveryEvent ev,
                                                                      com.xebialabs.deployit.plugin.api.udm.base.BaseConfigurationItem target,
                                                                      java.lang.Object... parameters)
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface com.xebialabs.xlrelease.activity.ActivityOps
      • getCategories

        public java.util.Set<com.xebialabs.xlrelease.domain.ActivityCategory> getCategories()
        Specified by:
        getCategories in interface com.xebialabs.xlrelease.activity.ActivityOps
      • safeValueOf

        public static DeliveryActivity safeValueOf​(java.lang.String name)