
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 and Description |
|---|
E
Een relatie entiteit wordt beeindigd.
|
I
Entiteit bevat alleen identificerende gegevens.
|
R
Een relatie entiteit wordt vervangen door een nieuwe relatie entiteit.
|
S
De sleutel van een fundamentele entiteit wordt gewijzigd.
|
T
Toevoeging
|
V
Verwijdering
|
W
Wijziging of correctie
|
| Modifier and Type | Method and Description |
|---|---|
static Verwerkingssoort |
fromValue(String v) |
String |
value() |
static Verwerkingssoort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Verwerkingssoort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Verwerkingssoort T
public static final Verwerkingssoort W
public static final Verwerkingssoort V
public static final Verwerkingssoort E
public static final Verwerkingssoort I
public static final Verwerkingssoort R
public static final Verwerkingssoort S
public static Verwerkingssoort[] values()
for (Verwerkingssoort c : Verwerkingssoort.values()) System.out.println(c);
public static Verwerkingssoort valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static Verwerkingssoort fromValue(String v)
Copyright © 2014–2018 B3Partners B.V.. All rights reserved.