Enum Class PublishState

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

public enum PublishState extends Enum<PublishState>
The publication state of the application.
  • Enum Constant Details

    • UNKNOWN

      public static final PublishState UNKNOWN
      Application state is unknown.
    • INCREMENTAL_PUBLISH_REQUIRED

      public static final PublishState INCREMENTAL_PUBLISH_REQUIRED
      Infobase configuration need incremental update.
    • FULL_PUBLISH_REQUIRED

      public static final PublishState FULL_PUBLISH_REQUIRED
      Infobase configuration needs full update.
    • FULL_SYNCHRONIZED

      public static final PublishState FULL_SYNCHRONIZED
      Infobase configuration does not need to be updated.
    • PUBLISHING

      public static final PublishState PUBLISHING
      Infobase configuration is being updated right now.
  • Method Details

    • values

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