de.bsvrz.ste.rdstmc.meldungserstellung
Enum PublikationInitial

java.lang.Object
  extended by java.lang.Enum<PublikationInitial>
      extended by de.bsvrz.ste.rdstmc.meldungserstellung.PublikationInitial
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PublikationInitial>

public enum PublikationInitial
extends java.lang.Enum<PublikationInitial>

Es wird festgelegt, was beim Starten der Meldungserstellung publiziert wird
- Nur aktuelle Änderungen der Meldungen - falls vorhanden
- Alles, was vorher (beim letzten Programmlauf) auch publiziert war
*

Version:
$Revision: 1.1 $ / $Date: 2009/01/27 13:54:22 $ / ($Author: Sans $)
Author:
Dambach Werke

Enum Constant Summary
AENDERUNGEN
           
ALLES
           
 
Field Summary
 int id
          Numerische Darstellung der Location-Methode
 
Method Summary
static PublikationInitial get(int id)
           
static PublikationInitial valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PublikationInitial[] 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

AENDERUNGEN

public static final PublikationInitial AENDERUNGEN

ALLES

public static final PublikationInitial ALLES
Field Detail

id

public final int id
Numerische Darstellung der Location-Methode

Method Detail

values

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

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

valueOf

public static PublikationInitial 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

get

public static PublikationInitial get(int id)
Parameters:
numerische - Id für die initiale Publikation
Returns:
die zur übergebenen Id gehörende PublikationInitial-Instanz oder null, falls es zur Id keine Instanz gibt