Package de.consist.bmu.rule.schema
Enum BMUKopfdaten.Zugangstyp
- java.lang.Object
-
- java.lang.Enum<BMUKopfdaten.Zugangstyp>
-
- de.consist.bmu.rule.schema.BMUKopfdaten.Zugangstyp
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BMUKopfdaten.Zugangstyp>
- Enclosing class:
- BMUKopfdaten
public static enum BMUKopfdaten.Zugangstyp extends java.lang.Enum<BMUKopfdaten.Zugangstyp>
Enumeration des Zugangstyp.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BMUKopfdaten.Zugangstyp
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BMUKopfdaten.Zugangstyp[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZKS
public static final BMUKopfdaten.Zugangstyp ZKS
OSCI.
-
OSCI
public static final BMUKopfdaten.Zugangstyp OSCI
OSCI.
-
EMAIL
public static final BMUKopfdaten.Zugangstyp EMAIL
EMail.
-
SONST
public static final BMUKopfdaten.Zugangstyp SONST
sonstiger Zugang.
-
-
Method Detail
-
values
public static BMUKopfdaten.Zugangstyp[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BMUKopfdaten.Zugangstyp c : BMUKopfdaten.Zugangstyp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BMUKopfdaten.Zugangstyp valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-