Enum Class Verwerkingssoort

java.lang.Object
java.lang.Enum<Verwerkingssoort>
nl.egem.stuf.stuf0204.Verwerkingssoort
All Implemented Interfaces:
Serializable, Comparable<Verwerkingssoort>, Constable

public enum Verwerkingssoort extends Enum<Verwerkingssoort>

Java class for Verwerkingssoort.

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

 <simpleType name="Verwerkingssoort">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <maxLength value="1"/>
     <enumeration value="T"/>
     <enumeration value="W"/>
     <enumeration value="V"/>
     <enumeration value="E"/>
     <enumeration value="I"/>
     <enumeration value="R"/>
     <enumeration value="S"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • T

      public static final Verwerkingssoort T
      Toevoeging
    • W

      public static final Verwerkingssoort W
      Wijziging of correctie
    • V

      public static final Verwerkingssoort V
      Verwijdering
    • E

      public static final Verwerkingssoort E
      Een relatie entiteit wordt beeindigd.
    • I

      public static final Verwerkingssoort I
      Entiteit bevat alleen identificerende gegevens.
    • R

      public static final Verwerkingssoort R
      Een relatie entiteit wordt vervangen door een nieuwe relatie entiteit.
    • S

      public static final Verwerkingssoort S
      De sleutel van een fundamentele entiteit wordt gewijzigd.
  • Method Details

    • values

      public static Verwerkingssoort[] 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 Verwerkingssoort 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 Verwerkingssoort fromValue(String v)