Enum DigitalAssetState

java.lang.Object
java.lang.Enum<DigitalAssetState>
com.orchestranetworks.addon.dama.ext.enumeration.DigitalAssetState
All Implemented Interfaces:
Serializable, Comparable<DigitalAssetState>, Constable

public enum DigitalAssetState extends Enum<DigitalAssetState>
Defines the permission to see and modify a resource.

The possible states are:

  • Activated when applied to a digital asset the digital asset is available to select.
  • Deactivated when applied to a digital asset the digital asset is unavailable to select.
Since:
1.6.0
  • Enum Constant Details

  • Method Details

    • values

      public static DigitalAssetState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DigitalAssetState valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • parse

      public static DigitalAssetState parse(String state)
      Parses the state.
      Parameters:
      state - the state
      Returns:
      the digital asset state
    • getState

      public String getState()
      Gets the state.
      Returns:
      the state
    • getLabel

      public com.onwbp.base.text.UserMessage getLabel()
      Gets the label.
      Returns:
      the label
    • toString

      public String toString()
      Overrides:
      toString in class Enum<DigitalAssetState>
    • isActivated

      public boolean isActivated()
      Checks whether the state activated.
      Returns:
      true, if is activated
    • isDeactivated

      public boolean isDeactivated()
      Checks whether the state deactivated.
      Returns:
      true, if is deactivated