Enum Class ProcessingMode

java.lang.Object
java.lang.Enum<ProcessingMode>
com.cumulocity.sdk.client.ProcessingMode
All Implemented Interfaces:
Serializable, Comparable<ProcessingMode>, Constable

public enum ProcessingMode extends Enum<ProcessingMode>
  • Enum Constant Details

    • TRANSIENT

      public static final ProcessingMode TRANSIENT
    • PERSISTENT

      public static final ProcessingMode PERSISTENT
    • QUIESCENT

      public static final ProcessingMode QUIESCENT
      Persistent with real time broadcast disabled
    • CEP

      public static final ProcessingMode CEP
      CEP only. Persistence and real time broadcast are disabled.
  • Field Details

  • Method Details

    • values

      public static ProcessingMode[] 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 ProcessingMode 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
    • parse

      public static ProcessingMode parse(String value)
    • isPersistent

      public static boolean isPersistent(ProcessingMode other)
    • isQuiescent

      public static boolean isQuiescent(ProcessingMode other)