Enum Class ThingLifecycle

java.lang.Object
java.lang.Enum<ThingLifecycle>
org.eclipse.ditto.things.model.ThingLifecycle
All Implemented Interfaces:
Serializable, Comparable<ThingLifecycle>, Constable

public enum ThingLifecycle extends Enum<ThingLifecycle>
An enumeration of a Thing's lifecycle.
  • Enum Constant Details

    • ACTIVE

      public static final ThingLifecycle ACTIVE
      Signals that a Thing is active.
    • DELETED

      public static final ThingLifecycle DELETED
      Signals that a Thing is deleted.
  • Method Details

    • values

      public static ThingLifecycle[] 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 ThingLifecycle 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
    • forName

      public static Optional<ThingLifecycle> forName(String name)
      Returns the ThingLifecycle with the given name.
      Parameters:
      name - the name of the lifecycle to get.
      Returns:
      the lifecycle with the given name or an empty optional.