Module nl.tno.omt
Package nl.tno.omt

Enum Class ResignActionType

java.lang.Object
java.lang.Enum<ResignActionType>
nl.tno.omt.ResignActionType
All Implemented Interfaces:
Serializable, Comparable<ResignActionType>, Constable

public enum ResignActionType extends Enum<ResignActionType>

Java class for resignActionType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="resignActionType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="UnconditionallyDivestAttributes"/>
     <enumeration value="DeleteObjects"/>
     <enumeration value="CancelPendingOwnershipAcquisitions"/>
     <enumeration value="DeleteObjectsThenDivest"/>
     <enumeration value="CancelThenDeleteThenDivest"/>
     <enumeration value="NoAction"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • UNCONDITIONALLY_DIVEST_ATTRIBUTES

      public static final ResignActionType UNCONDITIONALLY_DIVEST_ATTRIBUTES
    • DELETE_OBJECTS

      public static final ResignActionType DELETE_OBJECTS
    • CANCEL_PENDING_OWNERSHIP_ACQUISITIONS

      public static final ResignActionType CANCEL_PENDING_OWNERSHIP_ACQUISITIONS
    • DELETE_OBJECTS_THEN_DIVEST

      public static final ResignActionType DELETE_OBJECTS_THEN_DIVEST
    • CANCEL_THEN_DELETE_THEN_DIVEST

      public static final ResignActionType CANCEL_THEN_DELETE_THEN_DIVEST
    • NO_ACTION

      public static final ResignActionType NO_ACTION
  • Method Details

    • values

      public static ResignActionType[] 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 ResignActionType 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
    • value

      public String value()
    • fromValue

      public static ResignActionType fromValue(String v)