
public enum Mutatiesoort extends Enum<Mutatiesoort>
Java class for Mutatiesoort.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Mutatiesoort">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="T"/>
<enumeration value="W"/>
<enumeration value="V"/>
<enumeration value="C"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
C
Correctie
|
T
Toevoeging
|
V
Verwijdering
|
W
Wijziging
|
| Modifier and Type | Method and Description |
|---|---|
static Mutatiesoort |
fromValue(String v) |
String |
value() |
static Mutatiesoort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mutatiesoort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mutatiesoort T
public static final Mutatiesoort W
public static final Mutatiesoort V
public static final Mutatiesoort C
public static Mutatiesoort[] values()
for (Mutatiesoort c : Mutatiesoort.values()) System.out.println(c);
public static Mutatiesoort 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 Mutatiesoort fromValue(String v)
Copyright © 2014–2017 B3Partners B.V.. All rights reserved.