Package de.consist.bmu.rule
Enum MeldungTyp.FehlerKlasse
- java.lang.Object
-
- java.lang.Enum<MeldungTyp.FehlerKlasse>
-
- de.consist.bmu.rule.MeldungTyp.FehlerKlasse
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MeldungTyp.FehlerKlasse>
- Enclosing interface:
- MeldungTyp
public static enum MeldungTyp.FehlerKlasse extends java.lang.Enum<MeldungTyp.FehlerKlasse>
Enumeration der Fehlerklassen.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANHANG
Fehler in den Anhaengen.INHALTFALSCH
Falscher Inhalt.INHALTFEHLT
Fehlernder Inhalt.KEINFEHLER
Kein Fehler.KEINSCHEMA
Dokument ist nicht Schemavalide.KEINXML
Kein Xml-Dokument.SIGNATURFEHLER
Fehler in den Signaturen des Dokuments.SONSTIGES
Sonstiges.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MeldungTyp.FehlerKlasse
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MeldungTyp.FehlerKlasse[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEINFEHLER
public static final MeldungTyp.FehlerKlasse KEINFEHLER
Kein Fehler.
-
KEINXML
public static final MeldungTyp.FehlerKlasse KEINXML
Kein Xml-Dokument.
-
KEINSCHEMA
public static final MeldungTyp.FehlerKlasse KEINSCHEMA
Dokument ist nicht Schemavalide.
-
SIGNATURFEHLER
public static final MeldungTyp.FehlerKlasse SIGNATURFEHLER
Fehler in den Signaturen des Dokuments.
-
INHALTFEHLT
public static final MeldungTyp.FehlerKlasse INHALTFEHLT
Fehlernder Inhalt.
-
INHALTFALSCH
public static final MeldungTyp.FehlerKlasse INHALTFALSCH
Falscher Inhalt.
-
ANHANG
public static final MeldungTyp.FehlerKlasse ANHANG
Fehler in den Anhaengen.
-
SONSTIGES
public static final MeldungTyp.FehlerKlasse SONSTIGES
Sonstiges.
-
-
Method Detail
-
values
public static MeldungTyp.FehlerKlasse[] 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 (MeldungTyp.FehlerKlasse c : MeldungTyp.FehlerKlasse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeldungTyp.FehlerKlasse 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
-
-