public enum Status extends Enum<Status>
| Enum Constant and Description |
|---|
ADDITIONAL
Optional field
|
DEPENDENT
Mandatory if superordinate data group is filled
|
MANDATORY
Mandatory, must always be delivered and filled.
|
OPTIONAL
Mandatory field with optional content
|
| Modifier and Type | Method and Description |
|---|---|
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status MANDATORY
Mandatory, must always be delivered and filled.
| Language | General Definition |
|---|---|
| EN | Field must mandatorily be delivered filled |
| DE | Feld muss zwingend befüllt geliefert werden. |
| FR | Le champ doit obligatoirement être livré dûment rempli. |
| IT | Campo da inviare obbligatoriamente compilato. |
public static final Status DEPENDENT
Mandatory if superordinate data group is filled
| Language | General Definition |
|---|---|
| EN | Field must mandatorily be filled if the superordinate optional data group is filled. |
| DE | Feld muss zwingend befüllt werden, wenn die übergeordnete optionale Datengruppe befüllt ist. |
| FR | Le champ doit être rempli impérativement lorsque le groupe de données optionnel supérieur est rempli. |
| IT | Campo da inviare obbligatoriamente compilato, se il gruppo di dati opzionale di ordine superiore è compilato. |
public static final Status OPTIONAL
Mandatory field with optional content
| Language | General Definition |
|---|---|
| EN | Field must mandatorily be delivered, but not necessarily filled (can be empty). |
| DE | Feld muss zwingend geliefert, aber nicht zwingend befüllt werden (kann leer sein). |
| FR | Le champ doit être livré impérativement, mais il ne doit pas être rempli impérativement (il peut être vide). |
| IT | Campo da inviare, ma non da compilare obbligatoriamente (può essere vuoto). |
public static final Status ADDITIONAL
Optional field
| Language | General Definition |
|---|---|
| EN | Field does not necessarily have to be delivered |
| DE | Feld muss nicht geliefert werden. |
| FR | Le champ ne doit pas être livré. |
| IT | Campo che non deve essere necessariamente inviato |
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 nullCopyright © 2017 Codeblock GmbH. All rights reserved.