Enum Class ELfnServiceStatus

java.lang.Object
java.lang.Enum<ELfnServiceStatus>
com.luciad.fusion.platform.model.ELfnServiceStatus
All Implemented Interfaces:
Serializable, Comparable<ELfnServiceStatus>, Constable

public enum ELfnServiceStatus extends Enum<ELfnServiceStatus>
Enum representing the different states that a service can be in.
Since:
2021.0
  • Enum Constant Details

    • RUNNING

      public static final ELfnServiceStatus RUNNING
      Status that indicates that the service is accessible to clients to handle requests.
    • PENDING

      public static final ELfnServiceStatus PENDING
      Status that indicates that one or more pre-processing jobs are executing for the service.
    • STOPPED

      public static final ELfnServiceStatus STOPPED
      Status that indicates that a service is not available to handle requests from clients.

      This means that service was stopped or hasn't been started yet.

  • Method Details

    • values

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