Enum Class ApplicationUpdateState

java.lang.Object
java.lang.Enum<ApplicationUpdateState>
com.e1c.g5.dt.applications.ApplicationUpdateState
All Implemented Interfaces:
Serializable, Comparable<ApplicationUpdateState>, Constable

public enum ApplicationUpdateState extends Enum<ApplicationUpdateState>
Status of synchronizing infobase configuration with the project.

The status ignores changes made in infobase through designer. This is the state from EDT side and if infobase configuration update has been performed previously or not.

  • Enum Constant Details

    • UNKNOWN

      public static final ApplicationUpdateState UNKNOWN
      Application state is unknown.
    • INCREMENTAL_UPDATE_REQUIRED

      public static final ApplicationUpdateState INCREMENTAL_UPDATE_REQUIRED
      Infobase configuration has been previously synchronized with a project but then a project has been changed so just the changes have to be loaded into infobase.
    • FULL_UPDATE_REQUIRED

      public static final ApplicationUpdateState FULL_UPDATE_REQUIRED
      Infobase configuration has not been previously synchronized with a project of a project was changed in a way that requires loading full configuration into infobase.
    • UPDATED

      public static final ApplicationUpdateState UPDATED
      Infobase configuration does not need to be updated.
    • BEING_UPDATED

      public static final ApplicationUpdateState BEING_UPDATED
      Infobase configuration is being updated right now.
  • Method Details

    • values

      public static ApplicationUpdateState[] 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 ApplicationUpdateState 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