Enum Class 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: the digital asset displays and is selectable in the Drive view and Manage digital assets screen.
  • Deactivated: the digital asset does not display in the Drive view or Manage digital assets screen. Only an administrator can view and change the state in the Digital asset table.
Since:
1.6.0
  • Enum Constant Details

  • Method Details

    • values

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