Enum ActivityStatus

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Deleted
      An ActivityInstance was deleted.
      Done
      An ActivityInstance is done.
      Executing
      An ActivityInstance is executing.
      Finished
      An ActivityInstance is finished.
      Killed
      An ActivityInstance was killed.
      Ready
      An ActivityInstance is ready.
      ReadyBackground
      An ActivityInstance is is ready in the background (only supported with the Item Handler step).
      SendingOn
      An ActivityInstance's send on processing is being performed in the background by the Workflow Agent.
      Started
      An ActivityInstance has been started.
      Suspended
      An ActivityInstance has been suspended.
      Unknown
      An ActivityInstance has a status not supported by this API.
      Waiting
      An ActivityInstance is waiting to become ready.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static ActivityStatus fromString​(java.lang.String s)
      Returns the enum constant with the specified name.
      void load​(com.opentext.api.LLValue value)
      Deserialize an ServiceDataObject from an LLValue that is received from Livelink.
      com.opentext.api.LLValue toLLValue()
      Serialize an SDO object to an LLValue that can be sent to Livelink.
      static ActivityStatus valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ActivityStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

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

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

      • Deleted

        public static final ActivityStatus Deleted
        An ActivityInstance was deleted.
      • Done

        public static final ActivityStatus Done
        An ActivityInstance is done.
      • Executing

        public static final ActivityStatus Executing
        An ActivityInstance is executing.
      • Finished

        public static final ActivityStatus Finished
        An ActivityInstance is finished.
      • Killed

        public static final ActivityStatus Killed
        An ActivityInstance was killed.
      • Ready

        public static final ActivityStatus Ready
        An ActivityInstance is ready.
      • ReadyBackground

        public static final ActivityStatus ReadyBackground
        An ActivityInstance is is ready in the background (only supported with the Item Handler step).
      • SendingOn

        public static final ActivityStatus SendingOn
        An ActivityInstance's send on processing is being performed in the background by the Workflow Agent.
      • Started

        public static final ActivityStatus Started
        An ActivityInstance has been started.
      • Suspended

        public static final ActivityStatus Suspended
        An ActivityInstance has been suspended.
      • Unknown

        public static final ActivityStatus Unknown
        An ActivityInstance has a status not supported by this API.
      • Waiting

        public static final ActivityStatus Waiting
        An ActivityInstance is waiting to become ready.
    • Method Detail

      • values

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

        public static ActivityStatus 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
      • load

        public void load​(com.opentext.api.LLValue value)
        Description copied from interface: IServiceDataObject
        Deserialize an ServiceDataObject from an LLValue that is received from Livelink. The LLValue is an Assoc that contains all of the features of this SDO. These features may refer to other SDOs and contain arrays of primitive values or SDOs. Each referenced SDO, will have its load() method called as well. Note: this is an internal method not meant to be called by clients.
        Specified by:
        load in interface IServiceDataObject
        Parameters:
        value - the LLValue containing the data to be loaded
      • toLLValue

        public com.opentext.api.LLValue toLLValue()
        Description copied from interface: IServiceDataObject
        Serialize an SDO object to an LLValue that can be sent to Livelink. Each feature of the SDO is stored in a key of the LLValue Assoc. Any references to other SDOs cause their toLLValue() method to be called. Note: this is an internal method not meant to be called by clients.
        Specified by:
        toLLValue in interface IServiceDataObject
        Returns:
        Returns the LLValue object that represents this SDO
      • fromString

        public static ActivityStatus fromString​(java.lang.String s)
        Returns the enum constant with the specified name.