de.bsvrz.vew.bmvew.bmvew.regel
Enum Filter.MeldungsTyp

java.lang.Object
  extended by java.lang.Enum<Filter.MeldungsTyp>
      extended by de.bsvrz.vew.bmvew.bmvew.regel.Filter.MeldungsTyp
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Filter.MeldungsTyp>
Enclosing class:
Filter

public static enum Filter.MeldungsTyp
extends java.lang.Enum<Filter.MeldungsTyp>

Die definierten Meldungstypen

Version:
$Revision: 1.2 $ / $Date: 2015/06/09 13:02:12 $ / ($Author: Pittner $)
Author:
Dambach-Werke GmbH, Timo Pittner

Enum Constant Summary
Fach
           
System
           
 
Field Summary
private  java.lang.String wert
           
 
Method Summary
static Filter.MeldungsTyp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Filter.MeldungsTyp[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Fach

public static final Filter.MeldungsTyp Fach

System

public static final Filter.MeldungsTyp System
Field Detail

wert

private final java.lang.String wert
Method Detail

values

public static Filter.MeldungsTyp[] 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 (Filter.MeldungsTyp c : Filter.MeldungsTyp.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Filter.MeldungsTyp 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 name
java.lang.NullPointerException - if the argument is null