Enum RecalculateAction

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RecalculateAction>

    public enum RecalculateAction
    extends java.lang.Enum<RecalculateAction>
    Vote for personalization recalculation.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ASYNC_PROCESS
      Generated enum value for RecalculateAction.ASYNC_PROCESS value defined at extension personalizationservices.
      ASYNC_PROCESS_CDS
      Generated enum value for RecalculateAction.ASYNC_PROCESS_CDS value defined at extension personalizationyprofile.
      ASYNC_PROCESS_DEFAULT
      Generated enum value for RecalculateAction.ASYNC_PROCESS_DEFAULT value defined at extension personalizationservices.
      IGNORE
      Generated enum value for RecalculateAction.IGNORE value defined at extension personalizationservices.
      LOAD
      Generated enum value for RecalculateAction.LOAD value defined at extension personalizationservices.
      RECALCULATE
      Generated enum value for RecalculateAction.RECALCULATE value defined at extension personalizationservices.
      UPDATE
      Generated enum value for RecalculateAction.UPDATE value defined at extension personalizationservices.
      UPDATE_CDS
      Generated enum value for RecalculateAction.UPDATE_CDS value defined at extension personalizationyprofile.
      UPDATE_DEFAULT
      Generated enum value for RecalculateAction.UPDATE_DEFAULT value defined at extension personalizationservices.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static RecalculateAction valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static RecalculateAction[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • IGNORE

        public static final RecalculateAction IGNORE
        Generated enum value for RecalculateAction.IGNORE value defined at extension personalizationservices.
      • RECALCULATE

        public static final RecalculateAction RECALCULATE
        Generated enum value for RecalculateAction.RECALCULATE value defined at extension personalizationservices.
      • UPDATE

        public static final RecalculateAction UPDATE
        Generated enum value for RecalculateAction.UPDATE value defined at extension personalizationservices.
      • UPDATE_DEFAULT

        public static final RecalculateAction UPDATE_DEFAULT
        Generated enum value for RecalculateAction.UPDATE_DEFAULT value defined at extension personalizationservices.
      • ASYNC_PROCESS

        public static final RecalculateAction ASYNC_PROCESS
        Generated enum value for RecalculateAction.ASYNC_PROCESS value defined at extension personalizationservices.
      • ASYNC_PROCESS_DEFAULT

        public static final RecalculateAction ASYNC_PROCESS_DEFAULT
        Generated enum value for RecalculateAction.ASYNC_PROCESS_DEFAULT value defined at extension personalizationservices.
      • LOAD

        public static final RecalculateAction LOAD
        Generated enum value for RecalculateAction.LOAD value defined at extension personalizationservices.
      • UPDATE_CDS

        public static final RecalculateAction UPDATE_CDS
        Generated enum value for RecalculateAction.UPDATE_CDS value defined at extension personalizationyprofile.
      • ASYNC_PROCESS_CDS

        public static final RecalculateAction ASYNC_PROCESS_CDS
        Generated enum value for RecalculateAction.ASYNC_PROCESS_CDS value defined at extension personalizationyprofile.
    • Method Detail

      • values

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

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